ReinerLau1 / Blog

Just a blog
MIT License
0 stars 0 forks source link

为什么需要清除浮动?清除浮动的方式 #255

Closed ReinerLau1 closed 2 years ago

ReinerLau1 commented 2 years ago

定义

ReinerLau1 commented 2 years ago

原理

ReinerLau1 commented 2 years ago

浮动引起的问题

ReinerLau1 commented 2 years ago

清除浮动

.clearfix:after{
    content: "\200B";
    display: table;
    height: 0;
    clear: both;
}