Hi

(css) clear 본문

WEB(웹)

(css) clear

SharingWorld 2018. 5. 27. 20:20

float 속성 해제하기


float 속성을 사용하고, 그 다음에 넣는 다른 요소들에도 똑같이 속성이 전달되기 때문에, float 속성이 유용하지 않다는 것을 알려주는 속성


clear : none | left | right | both










<style>
div {
padding:20px;
margin:10px;
}
.box1{
background:#ffd800;
float:left;
}
.box2 {
background: #0094ff;
float:left;
}
.box3 {
background: #00ff21;
}
.box4 {
background:#a874ff;
clear:both;
} </style>

<div class="box1">박스1</div>
<div class="box2">박스2</div>
<div class="box3">박스3</div>
<div class="box4">박스4</div>


'WEB(웹)' 카테고리의 다른 글

Lorem Ipsum  (0) 2018.05.27
(css) position  (0) 2018.05.27
(css) float  (0) 2018.05.27
(css) box-sizing  (0) 2018.05.27
(css) padding  (0) 2018.05.27