div+css网页布局设计新开端(7)

下面在回到两个水平p外边距重合问题

<html>
<head>
<style type="text/css"> 
body{margin:0;padding:0;} 
#a{width:500px;height:500px;border:solid;}
.p{width:100px;height:100px;border:soild;
margin-right:20px;background:green;float:left;} 
#b{width:100px;height:100px;border:soild;margin-left:20px;background:green;float:left;} 
</style> 
<head>
<body>
<p id="a">
<p class="p"></p>
<p id="b"></p>
</p>
</body>
</html>

ie6和火狐是一样的
由此说明,水平外边距不会重合

如何第一个p没设置浮动,第2个设置了
那么不会水平排列的

<html>
<head>
<style type="text/css"> 
body{
margin:0;
padding:0;
} #a{
width:500px;
height:500px;
border:solid;
}
.p{
width:100px;
height:100px;
border:soild;
margin:5px;
background:green;
} 
#b{
width:100px;
height:100px;
border:soild;
margin:5px;
background:green;
float:left;
} 
</style> 
<head>
<body>
<p id="a">
<p class="p"></p>
<p id="b"></p>
</p>
</body>
</html>

先看火狐的

这里可以看出对于float的p和普通p, 垂直外边距是不会发生重合的
在看ie6的

第2个p竟然把左边的外边距和第一个p相加了,是10px,所以说浏览器兼容问题是挺麻烦的呀

浮动p是可以根据普通p来定位的

<html>
<head>
<style type="text/css"> 
body{
margin:0;
padding:0;
} #a{
width:500px;
height:500px;
border:solid;
}
.p{
width:100px;
height:100px;
border:soild;
margin:5px;
background:green;
} 
#b{
width:100px;
height:100px;
border:soild;
margin-top:25px;
background:green;
float:left;
} 
</style> 
<head>
<body>
<p id="a">
<p class="p"></p>
<p id="b"></p>
</p>
</body>
</html>

那么普通p能否根据浮动p来定位?实验一下

<html>
<head>
<style type="text/css"> 
body{
margin:0;
padding:0;
} #a{
width:500px;
height:500px;
border:solid;
}
.p{
width:100px;
height:100px;
border:soild;
margin:5px;
background:green;
} 
#b{
width:100px;
height:100px;
border:soild;
margin-top:25px;
background:green;
float:left;
} 
#c{
width:300px;
height:300px;
border:soild;
margin-top:50px;
background:green;
} 
</style> 
<head>
<body>
<p id="a">
<p class="p"></p>
<p id="b"></p>
<p id="c"></p>
</p>
</body>
</html>

这里故意把第3个p弄大点

可以看出,它是不知道第2个p存在的,而是根据第一个普通p来定的位,中间相距50px
这里第3个p并没有覆盖第2个p,而是在他下面,把第2个p弄别的颜色就看的出来

因为普通p只能在地上,不可能到空中的

在看看ie6的显示。。。

我觉得用IE6学CSS就是个悲剧。。。

那么,浮动p能否根据浮动p定位呢?

<html>
<head>
<style type="text/css"> 
body{
margin:0;
padding:0;
} #a{
width:500px;
height:500px;
border:solid;
}
.p{
width:100px;
height:100px;
border:soild;
margin:5px;
background:green;
} 
#b{
width:100px;
height:100px;
border:soild;
background:green;
float:left;
} 
#c{
width:100px;
height:100px;
border:soild;
margin-left:50px;
background:green;
float:left;
} 
</style> 
<head>
<body>
<p id="a">
<p class="p"></p>
<p id="b"></p>
<p id="c"></p>
</p>
</body>
</html>

答案是肯定的

ie6也一样

下面总结一下
浮动元素是可以根据非浮动元素(就是普通p)和浮动元素来定位的
而非浮动元素只能根据非浮动元素定位,不能根据浮动元素定位

那么关于机场的比喻要重新诠释下了
浮动元素是飞在空中的飞机 非浮动元素是停在地上的飞机
如何非浮动元素占用了一块区域,浮动元素就不会占用这块区域,因为在空中是能看到地面的情况的,所以能够根据非浮动元素来定位
而如果浮动元素占用了一块区域,非浮动元素在地上是不知道空中的情况的,所以不会知道它的存在,所以两者会发生重合,一个在天,一个在地

以上就是p+css网页布局设计新开端(7)的内容,更多相关内容请关注PHP中文网(www.)!

div+css网页布局设计新开端(7)

相关文章:

你感兴趣的文章:

标签云: