문서의 선택한 두 판 사이의 차이를 보여줍니다.
다음 판 | 이전 판 | ||
wiki:css:css_note:css_position [2021/03/12 17:31] emblim98 만듦 |
wiki:css:css_note:css_position [2023/01/13 18:44] (현재) |
||
---|---|---|---|
줄 76: | 줄 76: | ||
====예제==== | ====예제==== | ||
<code html> | <code html> | ||
+ | < | ||
+ | <html lang=" | ||
+ | < | ||
+ | <meta charset=" | ||
+ | <meta http-equiv=" | ||
+ | <meta name=" | ||
+ | < | ||
+ | </ | ||
+ | < | ||
+ | div.relative { | ||
+ | position: relative; | ||
+ | left: 30px; | ||
+ | border: 3px solid #73ad21; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | |||
+ | <p>An element with position: relative; is positioned relative to its normal position:</ | ||
+ | |||
+ | <div class=" | ||
+ | This div element has position: relative; | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | \\ | ||
+ | \\ | ||
+ | =====position: | ||
+ | '' | ||
+ | 이것은 웹페이지가 스크롤되어도 항상 같은 자리에 고정되어 있다는 것을 의미합니다.\\ | ||
+ | top, right, bottom, left속성을 사용하여 요소를 배치합니다.\\ | ||
+ | \\ | ||
+ | 고정 요소는 일반적으로 위치하는 웹페이지에 공백을 남기지 않습니다.\\ | ||
+ | \\ | ||
+ | 웹페이지의 오른쪽 하단 모서리에 고정된 요소를 하기의 예제에서 확인하세요.\\ | ||
+ | ====예제==== | ||
+ | <code html> | ||
+ | < | ||
+ | <html lang=" | ||
+ | |||
+ | < | ||
+ | <meta charset=" | ||
+ | <meta http-equiv=" | ||
+ | <meta name=" | ||
+ | < | ||
+ | < | ||
+ | div.fixed { | ||
+ | position: fixed; | ||
+ | bottom: 0; | ||
+ | right: 0; | ||
+ | width: 300px; | ||
+ | border: 3px solid #73ad21; | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | <p> | ||
+ | An element with position: fixed; is positioned relative to the viewport, which means it always stays in the same | ||
+ | place even if the page is scrolled. | ||
+ | </p> | ||
+ | |||
+ | <div class=" | ||
+ | This div element has position: fixed; | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | \\ | ||
+ | \\ | ||
+ | =====position: | ||
+ | '' | ||
+ | \\ | ||
+ | 허자만 absolute 속성의 위치 요소가 배치된 조상을 가지고 있지 않는 경우, 문서 본문(documnt body)를 사용하고 페이지 스크롤과 함께 이동합니다.\\ | ||
+ | **Note: 위치 지정 요소는 위치가 static을 제외한 요소입니다.**\\ | ||
+ | \\ | ||
+ | ====예제==== | ||
+ | <code html> | ||
+ | < | ||
+ | <html lang=" | ||
+ | |||
+ | < | ||
+ | <meta charset=" | ||
+ | <meta http-equiv=" | ||
+ | <meta name=" | ||
+ | < | ||
+ | < | ||
+ | div.relative { | ||
+ | position: relative; | ||
+ | width: 400px; | ||
+ | height: 200px; | ||
+ | border: 3px solid #73ad21; | ||
+ | } | ||
+ | |||
+ | div.absolute { | ||
+ | position: absolute; | ||
+ | top: 80px; | ||
+ | right: 0; | ||
+ | width: 200px; | ||
+ | height: 100px; | ||
+ | border: 3px solid red; | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | |||
+ | <p> | ||
+ | An element with position: absolute; is positioned relative to the nearest positioned ancestor (instead of | ||
+ | positioned rlative to the viewport, like fixed): | ||
+ | </p> | ||
+ | |||
+ | <div class=" | ||
+ | This div element has position: relative; | ||
+ | <div class=" | ||
+ | This div element has position: absolute; | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | \\ | ||
+ | \\ | ||
+ | =====position: | ||
+ | '' | ||
+ | \\ | ||
+ | sticky 요소는 스크롤 위치에 따라 '' | ||
+ | 뷰포트에서 주어진 오프셋 위치에 도달할 때 까지 sticky 요소는 상대적으로 배치됩니다. \\ | ||
+ | 그런 다음 자리에 고정됩니다.(position: | ||
+ | \\ | ||
+ | **Note: 인터넷 익스플로러는 sticky 포지셔닝을 지원하지 않습니다. 사파리는 -webkit- prefix가 필요합니다. sticky 포지셔닝이 작동하도록 초최소한 '' | ||
+ | 하기의 예제에서 스크롤 위치에 도달하면 sticky 요소는 웹페이지의 상단에 고정됩니다.('' | ||
+ | ====예제==== | ||
+ | <code html> | ||
+ | < | ||
+ | <html lang=" | ||
+ | |||
+ | < | ||
+ | <meta charset=" | ||
+ | <meta http-equiv=" | ||
+ | <meta name=" | ||
+ | < | ||
+ | < | ||
+ | div.sticky { | ||
+ | position: -webkit-sticky; | ||
+ | position: sticky; | ||
+ | top: 0; | ||
+ | padding: 5px; | ||
+ | background-color: | ||
+ | border: 2px solid darkblue; | ||
+ | color: white; | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | |||
+ | <div class=" | ||
+ | |||
+ | <div style=" | ||
+ | <p> | ||
+ | In this example, the sticky element sticks to the top of the page (top: 0), when you reach its scroll | ||
+ | position. | ||
+ | </p> | ||
+ | < | ||
+ | <p> | ||
+ | Some text to enable scrolling.. Lorem ipsum dolor sit amet, illum definitiones no quo, maluisset | ||
+ | concludaturque et eum, altera fabulas ut quo. Atqui causae gloriatur ius te, id agam omnis evertitur eum. | ||
+ | Affert laboramus repudiandae nec et. Inciderint efficiantur his ad. Eum no molestiae voluptatibus. | ||
+ | </p> | ||
+ | <p> | ||
+ | Some text to enable scrolling.. Lorem ipsum dolor sit amet, illum definitiones no quo, maluisset | ||
+ | concludaturque et eum, altera fabulas ut quo. Atqui causae gloriatur ius te, id agam omnis evertitur eum. | ||
+ | Affert laboramus repudiandae nec et. Inciderint efficiantur his ad. Eum no molestiae voluptatibus. | ||
+ | </p> | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | \\ | ||
+ | \\ | ||
+ | =====Overlapping Elements===== | ||
+ | 요소들이 배치될 때, 다른 요소에 겹칠 수 있습니다.\\ | ||
+ | '' | ||
+ | \\ | ||
+ | 하나의 요소는 양수 또는 음수 스택 순서를 가질 수 있습니다.\\ | ||
+ | <code html> | ||
+ | < | ||
+ | <html lang=" | ||
+ | |||
+ | < | ||
+ | <meta charset=" | ||
+ | <meta http-equiv=" | ||
+ | <meta name=" | ||
+ | < | ||
+ | < | ||
+ | img { | ||
+ | position: absolute; | ||
+ | left: 0; | ||
+ | top: 0; | ||
+ | z-index: -1; | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | < | ||
+ | <img src=" | ||
+ | < | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | \\ | ||
+ | 스택 순서가 더 큰 요소는 항상 스택 순서가 낮은 요소 앞에 있습니다.\\ | ||
+ | \\ | ||
+ | **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> |