사용자 도구

사이트 도구


wiki:css:css_note:css_position

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
wiki:css:css_note:css_position [2021/03/12 19:17]
emblim98
wiki:css:css_note:css_position [2023/01/13 18:44] (현재)
줄 306: 줄 306:
 </html> </html>
 </code> </code>
 +\\
 +스택 순서가 더 큰 요소는 항상 스택 순서가 낮은 요소 앞에 있습니다.\\
 +\\
 +**Note: 지정된 ''z-index''없이 두 개의 배치 요소가 겹치는 경우, HTML 코드에서 마지막에 배치된 요소가 맨 위에 표시됩니다.**
 +\\
 +\\
 +=====Positioning Text In an Image=====
 +이미지 위에 텍스트를 배치하는 방법\\
 +\\
 +====예제====
 +<code html>
 +<!DOCTYPE html>
 +<html lang="en">
  
 +<head>
 +    <meta charset="UTF-8">
 +    <meta http-equiv="X-UA-Compatible" content="IE=edge">
 +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 +    <title>Text over Image</title>
 +    <style>
 +        .container {
 +            position: relative;
 +        }
  
 +        .topleft {
 +            position: absolute;
 +            top: 8px;
 +            left: 16px;
 +            font-size: 30px;
 +        }
 +
 +        .topright {
 +            position: absolute;
 +            top: 8px;
 +            right: 16px;
 +            font-size: 30px;
 +        }
 +
 +        .centered {
 +            position: absolute;
 +            top: 50%;
 +            width: 100%;
 +            text-align: center;
 +            font-size: 30px;
 +        }
 +
 +        .bottomleft {
 +            position: absolute;
 +            bottom: 8px;
 +            left: 16px;
 +            font-size: 30px;
 +        }
 +
 +        .bottomright {
 +            position: absolute;
 +            bottom: 8px;
 +            right: 16px;
 +            font-size: 30px;
 +        }
 +
 +        img {
 +            width: 100%;
 +            height: auto;
 +            opacity: 0.3;
 +        }
 +    </style>
 +</head>
 +
 +<body>
 +
 +    <h2>Image Text</h2>
 +    <p>Add some text to an image in the top left corner:</p>
 +
 +    <div class="container">
 +        <img src="img_5terre_wide.jpg" alt="Cinque Terre" width="1000" height="300">
 +        <div class="topright">Top Left</div>
 +        <div class="topleft">Top Right</div>
 +        <div class="centered">Centered</div>
 +        <div class="bottomleft">Bottom Left</div>
 +        <div class="bottomright">Bottom Right</div>
 +    </div>
 +
 +</body>
 +
 +</html>
 +</code>
  
 {{tag>오션, CSS layout, position property  }} {{tag>오션, CSS layout, position property  }}
/volume1/web/dokuwiki/data/attic/wiki/css/css_note/css_position.1615544243.txt.gz · 마지막으로 수정됨: 2022/03/10 19:52 (바깥 편집)