Rumah > Artikel > hujung hadapan web > css中clear:both与flaot:none的区别
简单的说:
1.clear:both是为了让浮动的元素的前后元素不受浮动的影响.
2.float:none是为了让子元素不要继承父元素的浮动效果.
clear:both;是为了不让浮动的内容影响别的标签,所以要清除浮动
float:none;我用过几次都是因为原先已经用过float:left;或者float:right;但是由于是控件或者公用的样式,如果改了会影响较大,就用float:none覆盖原先的样式。
这么说不知道能不能明白,最好有个实例。
对于新手来说.用了float 就用 clear.
.C-lr{ clear:both; height:0px; width:auto; font-size:0px; line-height:0px; visibility:hidden; border:0px; }
再深入研究可以避免用clear.
float:none ? 用它干嘛?
两者不一样,float:none;选中元素不浮动;clear:both;选中元素周围无浮动元素.
话说,clear:float;这是什么啊?我没见过。。。
clear有四个值:
none:允许左右两边有浮动对象;
both:不允许左右两边有浮动对象;
left:不允许左边有浮动对象;
right:不允许右边有浮动对象。
clear:left|right|both,清除浮动造成的影响,不是说清除浮动。
Atas ialah kandungan terperinci css中clear:both与flaot:none的区别 . Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!