문서의 선택한 두 판 사이의 차이를 보여줍니다.
양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
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: | ||
</ | </ | ||
</ | </ | ||
+ | \\ | ||
+ | 스택 순서가 더 큰 요소는 항상 스택 순서가 낮은 요소 앞에 있습니다.\\ | ||
+ | \\ | ||
+ | **Note: 지정된 '' | ||
+ | \\ | ||
+ | \\ | ||
+ | =====Positioning Text In an Image===== | ||
+ | 이미지 위에 텍스트를 배치하는 방법\\ | ||
+ | \\ | ||
+ | ====예제==== | ||
+ | <code html> | ||
+ | < | ||
+ | <html lang=" | ||
+ | < | ||
+ | <meta charset=" | ||
+ | <meta http-equiv=" | ||
+ | <meta name=" | ||
+ | < | ||
+ | < | ||
+ | .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; | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | < | ||
+ | |||
+ | <div class=" | ||
+ | <img src=" | ||
+ | <div class=" | ||
+ | <div class=" | ||
+ | <div class=" | ||
+ | <div class=" | ||
+ | <div class=" | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||
{{tag> | {{tag> |