플 로 팅 제거
방법 1:
우리 html 구조
<div class="A clearfix">
<div class="C floatLeft">
</div>
<div class="B floatLeft">
</div>
<div class="D floatLeft"></div>
</div>
css .C{
height:100px;
width:100px;
background:#eee;
}
.floatLeft{
float:left;
}
.B{
height:50px;
width:70px;
background:#0fcd4e;
}
.D{
height:110px;
width:50px;
background:#f35ded;
}
.A{
background:#aaa;
border: 1px solid #111;
}
.clearfix:before,
.clearfix:after {
content:"";
display:table;
}
.clearfix:after {
clear:both;
overflow:hidden;
}
.clearfix {
zoom:1; /* IE < 8 */
}
방법 2:
<div class="A">
<div class="C floatLeft">
</div>
<div class="B floatLeft">
</div>
<div class="D floatLeft"></div>
<div class="clear"></div>
</div>
css 방법 3:
.C{
height:100px;
width:100px;
background:#eee;
}
.floatLeft{
float:left;
}
.B{
height:50px;
width:70px;
background:#0fcd4e;
}
.D{
height:110px;
width:50px;
background:#f35ded;
}
.A{
background:#aaa;
border: 1px solid #111;
}
.clear {
clear:both;/* */
/* ie , */
height: 0;
line-height: 0;
font-size: 0;
}
css
<div class="A">
<div class="C floatLeft">
</div>
<div class="B floatLeft">
</div>
<div class="D floatLeft"></div>
</div>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[CSS] float: left, right, bothfloat 속성은 본문에 이미지 파일을 배치할 때에도 사용하지만, 본문들을 배치할 때에도 사용 할 수 있습니다. 요즘에는 float 속성이 조작이 어렵고(복잡하고), 유지보수가 힘들어서 grid 속성이나, flex ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.