float 는 붕 뜬다 라는 뜻을 가진다. 이 키워드를 생각하면 어렵지 않게 float를 이해할 수 있다.
.child {
float: left;
}
float 의 치명적인 단점은 layout을 망가뜨리는 것이다.
dumy text
를 입력했더니 이상하게 돼버렸다..parent {
width: 600px;
margin: 0 auto;
background-color: #eff2f7;
}
.parent::after {
/* clear는 display 속성이 block인 속성만 적용 가능 */
content: "";
display: block;
clear: left;
}
.child {
float: left;
width: 200px;
height: 200px;
line-height: 200px;
text-align: center;
color: #fff;
font-weight: 600;
}
.parent::after
부분이다. 이것은 가상화에 관련된 부분으로 clear: left;
를 통해서 자식들을 인지할 수 있게 된다.