Css+Div布局学习(二)?清理Clear_html/css_WEB-ITnose

WBOY
Freigeben: 2016-06-24 12:33:02
Original
1042 Leute haben es durchsucht

我们在Css+Div布局学习(一)?Div布局基础这篇文章里面讲解了基本的布局方法,Footer内有clear:both;属性就一句带过了,事后想了一下对于清理还是有些话要讲清楚的。那我就开辟一篇专门讲一下。

还是使用上一篇的布局事例来说明问题更加的简单:

Masthead

Sidebar_a

Sidebar_b

Content

Footer

这个布局的Css复习一下:

#Masthead  {  background-color:#CCCCCC;  margin-bottom:10px;  }  #Sidebar_a  {  float:left;  width:25%;  margin-bottom:10px;  background-color:#3399CC;  }  #Sidebar_b  {  float:right;  width:25%;  margin-bottom:10px;  background-color:#33ff33;  }  #Content  {  margin-bottom:10px;  height:150px;  background-color:#ff3366;  }  #Footer  {  clear:both;  background-color:#ffff00;  } 

如果我们去掉#Footer 里面的clear:both; 属性,好像也没有太大的区别。那我们再来看看改变一下布局内Div的高度后会怎么样呢?

Masthead

Sidebar_a

Sidebar_b

Content

Footer:去掉了CLEAR: both;属性哦!

这个布局不好看啊,因为foot这个块跟在Content块的流后面,因此两边的浮动块也会被它包围。(我现在的话也应该是“围绕”在Sidebar_b左面的,因为没有被清理!)

Clear属性有4个值:left、right、both和none;none这个值没有什么好说的,我们一开始清理了Footer的两边,那清理一边会有怎么样的效果呢?

Masthead

Sidebar_a

Sidebar_b

Content

Footer:使用CLEAR:left;属性哦!

有了这几张的效果图,应该很好理解这个属性了。在有两个边栏的情况下,Footer使用Clear:both;是比较稳妥的。

Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage