CSS의 위치 속성은 웹 페이지에서 요소들의 위치를 정확하게 조절하여 다양한 레이아웃을 구현하는 데 사용됩니다.
예제:
.box {
position: relative; /* 상대 위치 */
top: 50px;
left: 100px;
}
.absolute-box {
position: absolute; /* 절대 위치 */
top: 0;
right: 0;
}
.fixed-box {
position: fixed; /* 고정 위치 */
bottom: 20px;
right: 20px;
}
예제:
.box1 {
position: absolute;
z-index: 2;
}
.box2 {
position: absolute;
z-index: 1;
}
예제:
.image {
float: left;
}
예제:
.text {
clear: both;
}
주의:
CSS position 속성: (0) | 2024.12.23 |
---|---|
z-index: 순서를 조절하는 CSS 속성 (0) | 2024.12.23 |
다음 줄로 넘어가지 않고 "..."으로 표시되도록 하는 방법 (0) | 2024.12.23 |
CSS Position (relative, absolute) (0) | 2024.12.06 |
HTML/CSS 그림위에 글씨올리기 박스올리기 (0) | 2024.11.15 |