保证金:0自动;没有居中,因为左边和右边都有div

时间:2014-06-12 01:02:04

标签: html css css3 position alignment

我试图将中间圆圈居中,但我甚至无法设置为边距:0自动;并显示:inline-block;或显示表。有什么建议吗?

JSFiddle

HTML

<div id="intro">
    <p class="body">As part of Science World’s Cycle Safe Initiative we have installed sensors at each of our gates. In the past year we have had over <b>300,000</b> people ride along. Some information we gathered for June included;</p>
    <span class="blue circle">
        <h3>2 - 3PM</h3>
        <p>is the busiest hour</p>
    </span>
    <span class="green circle">
        <h3>117,295</h3>
        <p>riders this month</p>
    </span>
    <span class="navy circle">
        <h3>10%</h3>
        <p>of Vancouverites*</p>
    </span>
</div>

CSS

#intro {
    max-width: 1080px;
    margin: 0 auto;
}
#intro .circle {
    min-width: 230px;
    min-height: 230px;
    display: inline-block;
    text-align: center;
    border-radius: 1000px;
    color: white;
    margin: 60px 0;
}
#intro .circle h3 {
    margin-top: 80px;
    margin-bottom: 0;
    font-size: 2.2em;
}
#intro .circle p {
    margin-top: 0;
}
#intro .circle.blue {
    background: #0079c8;
}
#intro .circle.green {
    background: #2ecc71;
}
#intro .circle.navy {
    background: #34495e;
    float: right;
}

4 个答案:

答案 0 :(得分:1)

text-align:center添加到#intro(因为您的内部内容就像内联一样)并将float:left添加到您的#intro .circle.blue

Example

答案 1 :(得分:0)

只有块级元素可以使用margin:0 auto居中。

但是,你可以通过其他方式达到你想要的效果。

通过将以下CSS添加到您的中间圈来查看this updated version of your jsfiddle的解决方案:

position:absolute;
left:50%;
margin:-115px;

(请注意,否定margin-left必须等于元素宽度的一半才能使其显示为使用此解决方案居中。)

答案 2 :(得分:0)

我已更新您的代码:http://jsfiddle.net/h9HGG/6/

诀窍是将每个圆圈置于div中,该div设置为“display:table-cell”。然后将所有圆圈包裹在一个容器中,该容器设置为“display:table”。

示例:

<div class="wrapper"> <!--display: table, width: 100%, table-layout: fixed -->
  <div class="circle-container"> <!--display: table-cell, text-align: center -->
     <!--circle 1-->
  </div>
  <div class="circle-container"> <!--display: table-cell, text-align: center -->
     <!--circle 2-->
  </div>
  <div class="circle-container"> <!--display: table-cell, text-align: center -->
     <!--circle 3-->
  </div>
</div>

答案 3 :(得分:0)

我不确定这对你有用 - FIDDLE

我将圆圈放在div中,向左浮动,对齐:居中,并给每个圆圈宽度为33%。

它们很灵活,甚至在水平移动屏幕时重叠(不确定是否适合你)。

CSS

.centerme {
           float: left;
           width: 33%;
           text-align: center;
}