티스토리 뷰
반응형
1) position: relatvie;
요소 자신의 기준으로 배치
html
<div class="box">1</div>
<div class="box relative">2</div>
<div class="box">3</div>
css
.box {
width: 100px;
height: 100px;
background: tomato;
border: 4px dashed red;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
font-size: 30px;
}
.relative {
position: relative;
bottom: 40px;
left: 30px;
}
출력결과
※ 파란색 점선의 네모박스가 자신의 기준 위치이고 이 위치는 1번 div로 부터 영향을 받는다.
그리고 3번 div로 영향을 준다.
▷ 느낌으로 보자면, 현재 보여지는 2번 div 박스는 가짜이고 실제는 파란색 점선 박스안에 있다고 보면 된다.
반응형
'HTML CSS JS' 카테고리의 다른 글
CSS) position:fixed; (0) | 2021.08.31 |
---|---|
CSS) position: absolute; (0) | 2021.08.30 |
CSS) position, top, bottom, left, right (0) | 2021.08.30 |
CSS) clear (0) | 2021.08.30 |
CSS) display 수정 (0) | 2021.08.30 |
댓글
공지사항