容器内3个div的等间距

时间:2014-05-01 12:11:35

标签: html css

容器是1200px,每个div只有292px宽。理想情况下,div 1将位于左边距,div 3将位于右边距,div 2将位于其中间。更复杂的是,当在移动设备上观看时,容器将减少到320px,并且所有3个div应该在彼此下方垂直排列。目前每个div的css看起来像这样:

.test1 {
float:left;
width:292px;
background-color:#F2F2F2;
margin:0 4px 5px;
border:1px solid grey;
line-height:0;
}

3 个答案:

答案 0 :(得分:2)

在容器上使用text-align:justify,这样无论您的容器中有多少元素,它都可以工作(您不必为每个列表项计算%宽度

<强> FIDDLE

<div class="container">
    <div class="test1"></div>
    <div class="test1"></div>
    <div class="test1"></div>
</div>

CSS

.container {
    width: 1200px;
    text-align: justify;
}
.container:after {
    content: '';
    display: inline-block;
    width: 100%;
}
.container .test1{
    display: inline-block;
    width:292px;
    background-color:#F2F2F2;
    margin:0 4px 5px;
    border:1px solid grey;
}

答案 1 :(得分:1)

根据你的html结构,你可以通过不同的方式实现你想要的。

float

  <tag left   :floatleft  />
  <tag right  :float:right/>
  <tag center :margin:auto/>

display:flex;

<parent 
       style="display:flex;justify-content:space-between;">
  <child left   />
  <child center />
  <child right  />
</parent>

使用@media查询,当宽度不足以容纳其中的3个时,您可以将行布局交换为列布局: DEMO

section {
  display:flex;
  justify-content:space-between;
}
article {
  width:292px;
  background:green;
}
@media all and (max-width:900px) {
  section {
    flex-direction:column ;
  }
  article {width:100%;
  }
}
<section>
  <article> 292px width</article>
  <article> 292px width</article>
  <article> 292px width</article>
</section>

display:inline-block

<parent 
       style="text-align:center">
  <child left    style="display:inline-block"/>
  <child center  style="display:inline-block"/>
  <child right   style="display:inline-block"/>
  <pseudo-tag    style="display:inline-block;width:100%"/><!--this can be either a pseudo element or a neutral tag in HTML to enhance compatibility for IEs<8 -->
</parent>

这里有一个代码笔,可轻松设置和调整3个框292px宽度:http://codepen.io/gc-nomade/pen/nrbDl

答案 2 :(得分:0)

这就是你要找的东西吗?

.container {
    width: 1200px;
}
.test1 {
    float:left;
    width: 24.333333333%;
    height: 200px;
    background-color:#F2F2F2;
    margin-left:13.3%;
    border:1px solid grey;
    line-height:0;
}

.test1:first-child {
    margin-left: 0;
}

jsfiddle