您的位置:首页 > 编程语言

清除浮动的代码

2017-05-02 14:48 127 查看
清除浮动的问题

/*清除浮动*/

* html .fixed {
height: 1%
}

.fixed:after {
content: ".";
display: block;
clear: both;
height: 0;
visibility: hidden
}

.fixed {
display: block;
min-height: 1%
}
.clear {
display: block !important;
float: none !important;
clear: both;
overflow: hidden;
width: auto !important;
height: 0 !important;
margin: 0 auto !important;
padding: 0 !important;
font-size: 0;
line-height: 0
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: