首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

div内部嵌套的多个div怎么做到:水平并列并均匀分布

2013-01-08 
div内部嵌套的多个div如何做到:水平并列并均匀分布?如题,要求内部的三个div水平并均匀分布(即中间要有间隔

div内部嵌套的多个div如何做到:水平并列并均匀分布?
如题,
要求内部的三个div水平并均匀分布(即中间要有间隔,不能挤在一起,也不能靠一边),
且垂直居中(即上下边距一样)。

如下:


<div id="1" style=" height:40px; width:500px;"> 
 <div id="2" style=" height:20px;width:50px;">中间1</div> 
 <div id="3" style=" height:20px; width:50px;">中间2</div> 
 <div id="4" style=" height:20px; width:50px;">中间3</div>
</div> 


多谢~
[解决办法]
<html>
<head>
<style>
.left{
float:left;
width:33%;
}
</style>
</head>
<body>
<div id="1" style=" height:40px; width:500px;"> 
 <div class="left" id="2" style=" height:20px;">中间1</div> 
 <div class="left" id="3" style=" height:20px;">中间2</div> 
 <div class="left" id="4" style=" height:20px;">中间3</div>
</div>
</body>
</html>

热点排行