3个div使用 float:left 后,如何设置他们之间的间距

<div>
<div style="float:left"> </div>
<div style="float:left">> </div>
<div style="float:left">> </div>
</div>三个div都连在一起了如何设置间距

<div>
<div style="float:left; width:30px; height:30px; margin-right:10px;"> </div>
<div style="float:left; width:30px; height:30px; margin-right:10px;">> </div>
<div style="float:left; width:30px; height:30px;">> </div>
</div>

设置好div的宽和高,再用margin-right设置间距,当然也可以在后两个div里设置margin-left
温馨提示:内容为网友见解,仅供参考
第1个回答  2013-05-19
margin-right:间距px; 最右边的可以不要 可以采用同一个class最有一个加个class把margin-right:0px 当然padding可以产生相同效果~ 算好距离不然会挤下去 - -~

3个div使用 float:left 后,如何设置他们之间的间距
<div style="float:left; width:30px; height:30px;">> <\/div> <\/div> 设置好div的宽和高,再用margin-right设置间距,当然也可以在后两个div里设置margin-left

三个div连在一起后,如何设置他们之间的间距?
<div style="float:left; width:30px; height:30px;">> <\/div> <\/div> 设置好div的宽和高,再用margin-right设置间距,当然也可以在后两个div里设置margin-left

两个并排div设置浮动后,间距如何设置,现在两个盒子已经重合了_百度知 ...
是用float:left;跟float:right;来设置吗?如果知道宽高的话,就设置宽高值,这样位置会比较固定,然后再设置margin值就可以设置他们的间距。每一行之后,最好用<div style=“clear:both;”><\/div>来清除浮动,这样下一行就不会跟着浮动了。

div使用了float属性,无法水平居中;求高手帮忙.
先加个大div,然后设置这个大div的内边距,把浮动的元素往右边挤一点:padding-left:25px;或者把.con1里面加个相对定位让所有浮动元素都往右移动一段距离:position:relative;left:25px;

DIV与DIV之间的间距怎么控制
浮动起来试试,float:left;

写代码将三个div模块居中显示,间隔为10px。。。求解,,,谢谢。。。
div{width: 100px; height: 40px; border: 1px solid red; display: inline-block;}\/*将三个div都设置为行内块元素,这样div就既保留了块的样式,又能体现为文本的在一行中显示的样式*\/ box2{margin: 0px 10px;}\/*将中间那个div的两边边距都设置为10px,就达到了中间间隔为10px的效果*\/ ...

有3个 div .分布在一行上每两个 div 之间有一定的间隔。样式该如何设...
<style> .dome{ height:100px;} .dome div{ height:100px; width:30%; margin:0 1.5%; border:1px solid #ccc; float:left;} <\/style> <div class="dome"> <div>1<\/div> <div>2<\/div> <div>3<\/div> <\/div>

在一个div父对象中如何插入3个div竖着排列
回答:在div样式中加float:left。 如果加了还是没有用那证明是div宽的的原因,重新设置一下宽度。 代码如下: <div style="width:300px"> <div style="width:50px;float:left">div2.1<\/div> <div style="width:100px;float:left">div2.2<\/div> <div style="width:150px;float:left">div2.3...

你好,我想让三个div分别出现在左边,中间,右边,间隔20PX用align怎么做到...
上面已经回答啦,不过,可以把代码写漂亮一点:给三个DIV取同一个class名,都有的属性写在一起,不同的再分开写,这样以调式,修改时会方便一点~~

html中三个盒子并排间距
方法一:使用float .father{ width: 660px;height: 150px;margin: 0 auto;border: 2px solid red;overflow: hidden;} .son{ width: 150px;height: 150px;float: left;text-align: center;line-height: 150px;margin-right: 20px;} .last{ margin-right: 0;} <div class="father"> <div...

相似回答