web页面开发常用技术
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web页面开发常用技术相关的知识,希望对你有一定的参考价值。
常用浮动清除
1 在浮动下面添加一个空div
<div class="clear:both;"></div>
2 父元素设置高度
3 父元素设置overflow:hidden; (推荐)
4 自动添加一个空DIV(推荐)
.st2_2:after {display: block;clear: both;content: "";visibility: hidden;height: 0;}
.st2_2 {zoom: 1;}
以上是关于web页面开发常用技术的主要内容,如果未能解决你的问题,请参考以下文章