关于css中clear元素的深入了解
程序员文章站
2022-03-18 23:29:35
...
clear:left;表示左侧不能有浮动元素。
clear:right;表示右侧不能有浮动元素。
clear:both;表示左右两侧都不能有浮动元素。
但在使用时,还得考虑css优先级问题。相同类型选择器制定的样式,在样式表文件中,越靠后的优先级越高 。
当所有元素的clear属性都设为right时,由于优先级的原因,并不是所想的那样:右侧没有浮动元素,而是右侧出现了浮动元素。
比如下面的代码:
<html> <head> <style type="text/css"> .p1{height:40px;width:40px;background-color:red;position:releative;float:left;clear:right; }.p2{height:40px;width:40px;background-color:green;position:relative;float:left;clear:right; }.p3{height:40px;width:40px;background-color:yellow;position:relative;float:left;clear:right; }.p4{height:40px;width:40px;background-color:black;position:relative;float:left;clear:right; }.p5{height:40px;width:40px;background-color:blue;position:relative;float:left;clear:right; }</style> </head> <body> <p class="p1"> </p> <p class="p2"> </p> <p class="p3"> </p> <p class="p4"> </p> <p class="p5"> </p> </body> </html>
clear-right
其中:class优先级关系: p5>p4>p3>p2>p1
所以,呈现出下图情况:
当所有元素的clear属性都设为left时,由于优先级的原因,并不是所想的那样:右侧可以有浮动元素,而是右侧不能出现浮动元素。
比如下面的代码:
<html> <head> <style type="text/css"> .p1{height:40px;width:40px;background-color:red;position:releative;float:left;clear:left; }.p2{height:40px;width:40px;background-color:green;position:relative;float:left;clear:left; }.p3{height:40px;width:40px;background-color:yellow;position:relative;float:left;clear:left; }.p4{height:40px;width:40px;background-color:black;position:relative;float:left;clear:left; }.p5{height:40px;width:40px;background-color:blue;position:relative;float:left;clear:left; }</style> </head> <body> <p class="p1"> </p> <p class="p2"> </p> <p class="p3"> </p> <p class="p4"> </p> <p class="p5"> </p> </body> </html>
clear-left
其中:class优先级关系: p5>p4>p3>p2>p1 。
所以,呈现出下图情况:
我有时偶尔还是会绕晕。。反正,了解了css优先级问题,就容易理解了。
以上就是关于css中clear元素的深入了解的详细内容,更多请关注其它相关文章!
上一篇: console怎样打印日志信息
下一篇: Easy UI点击文字实现展开关闭功能
推荐阅读
-
css clear属性 的深入了解
-
css float属性 与 clear属性 的深入了解
-
关于struts中的表单元素- Form bean not specified on mapping for action: "helloa.do"报错_html/css_WEB-ITnose
-
关于CSS3背景下@font face规则的深入了解
-
关于css中clear元素的深入了解
-
关于struts中的表单元素- Form bean not specified on mapping for action: "helloa.do"报错_html/css_WEB-ITnose
-
关于div+css 样式表中float与clear的用法_html/css_WEB-ITnose
-
深入了解CSS中边偏移属性top,right,bottom,left的详细用法
-
关于CSS3元素中过渡属性transition的详细介绍
-
关于CSS3背景下@font face规则的深入了解