We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTML:
<div class="parent"> <img src="http://damonare.cn/logo.png" class="fl"/> <p class="fr">浮动元素</p> <div class="clear"></div> </div>
CSS:
.fl { float: left; } .fr { float: right; } .clear { clear: both; }
.clearfix:after { content: '.'; display: block; height: 0; clear: both; visibility: hidden; } .cleafix { /* 触发haslayout */ *zoom: 1; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1、创建BFC
1.1 父容器设置overflow(hidden/auto)
1.2 父容器设置position(absolute/fixed)
1.3 父容器设置float
1.4 父容器设置display(inline-block)
2、浮动元素添加空元素,设置clear属性
HTML:
CSS:
3、使用:after伪元素(较为完美的方案)
The text was updated successfully, but these errors were encountered: