Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS를 사용하여 이미지의 오른쪽 하단에 텍스트를 배치하는 방법

<시간/>

텍스트를 왼쪽 하단에 배치하려면 하단 을 사용하십시오. 그리고 맞습니다 재산. 다음 코드를 실행하여 이미지의 오른쪽 하단에 텍스트를 배치할 수 있습니다.

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         .box {
            position: relative;
         }
         img {
            width: 100%;
            height: auto;
            opacity: 0.6;
         }
         .direction {
            position: absolute;
            bottom: 10px;
            right: 19px;
            font-size: 13px;
         }
      </style>
   </head>
   <body>
      <h1>Heading One</h1>
      <p>Below image has text in the bottom right:</p>
      <div class = "box">
         <img src = "https://www.tutorialspoint.com/python/images/python_data_science.jpg" alt = "Tutorial" width = "800" height = "400">
         <div class = "direction">Bottom Right Corner</div>
      </div>
   </body>
</html>