随机 css
Posted web-chuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随机 css相关的知识,希望对你有一定的参考价值。
1.清除浮动的几种方式
(1: 浏览器支持好,不容易出现怪问题(目前:大型网站都有使用,如:腾迅,网易,新浪等等)
<style type="text/css"> .div1background:#000080;border:1px solid red; .div2background:#800080;border:1px solid red;height:100px;margin-top:10px .leftfloat:left;width:20%;height:200px;background:#DDD .rightfloat:right;width:30%;height:80px;background:#DDD /*清除浮动代码*/ .clearfloat:afterdisplay:block;clear:both;content:"";visibility:hidden;height:0 .clearfloatzoom:1 </style> <div class="div1 clearfloat"> <div class="left">Left</div> <div class="right">Right</div> </div> <div class="div2"> div2 </div>
(2: 添加一个空div,利用css提高的clear:both清除浮动,让父级div能自动获取到高度
<style type="text/css"> .div1background:#000080;border:1px solid red .div2background:#800080;border:1px solid red;height:100px;margin-top:10px .leftfloat:left;width:20%;height:200px;background:#DDD .rightfloat:right;width:30%;height:80px;background:#DDD /*清除浮动代码*/ .clearfloatclear:both </style> <div class="div1"> <div class="left">Left</div> <div class="right">Right</div> <div class="clearfloat"></div> </div> <div class="div2"> div2 </div>
以上是关于随机 css的主要内容,如果未能解决你的问题,请参考以下文章