课程
/前端开发
/JavaScript
/形形色色的下拉菜单
:after和:before在IE9之前是不支持的,同样的情况,如何针对低版本浏览器清除浮动?
2014-12-01
源自:形形色色的下拉菜单 6-5
正在回答
ul{ zoom:1 } ul:after{ content:''; display:block; width:100%; height:0px; clear:both } 我的项目中就是使用这种,再或者 .clx{ width:100%; height:0px; line-height:0px; overflow:hidden; clear:both; } <div class="clx">写在需要清除浮动的后面</div>
*zoom: 1; 啊
我一般写display:inline-block就可以生效了~
jeanneze 提问者
use zoom to trigger haslayout
举报
本教程从易到难,循循渐进,运用不同技术实现动态下拉菜单