在div中居中三个div

时间:2012-07-21 02:06:43

标签: css html center

我试图将另外一个div中的三个div中心化。我似乎无法让它发挥作用。我的网站是响应式的,也许这与它有关?这是我到目前为止的代码和CSS,非常感谢任何帮助!

我想让所有三个div .hp-highlight集中在.home-highlights

<div id="home-highlights" class="clearfix">

    <div class="heading">
        <h2><a href="http://kompufast.com/?page_id=1909" title="What We Do"><span>What We Do</span></a></h2>
    </div>
    <!-- /heading -->

    <div class="hp-highlight  ">
        <img src="http://kompufast.com/wp-content/uploads/2012/06/kompufast_sales1.jpg" title="Sales" class="hp-highlight-img" />
        <h3><a href="http://kompufast.com/?services=safe-computing" title="Sales" target="_self">Sales</a></h3>
        <p>KompuFAST+ is the right company to help you address your need for all kind of consumer technology products.</p>
    </div>
    <!-- /hp-highlight -->

    <div class="hp-highlight  ">
        <img src="http://kompufast.com/wp-content/uploads/2012/02/kompufast_order1.jpg" title="Order" class="hp-highlight-img" />
        <h3><a href="http://kompufast.com/?services=social-media" title="Order" target="_self">Order</a></h3>
        <p>KompuFAST-Order facilitates the ordering of products, without a fee for special order.</p>
    </div>
    <!-- /hp-highlight -->

    <div class="hp-highlight highlight-third ">
        <img src="http://kompufast.com/wp-content/uploads/2012/02/kompufast_fix1.jpg" title="Fix" class="hp-highlight-img" />
        <h3><a href="http://kompufast.com/?services=shared-hosting " title="Fix" target="_self">Fix</a></h3>
        <p>KompuFAST+ has a team of dedicated repair technicians ready to diagnose your computer for all sorts of problems.</p>
    </div>

以下是我一直在尝试的CSS:

.home-highlights {
    margin-right:auto;
    margin-left:auto;
    width: 100%;
}
.hp-highlight {
    width: 280px;
}

3 个答案:

答案 0 :(得分:1)

无法在IE7或更低版​​本中工作,但现在就去。

.hp-highlight {
   display: inline-block;
   width: 280px;
   vertical-align: top;
}

如果你需要IE7和更低的支持,你必须使用浮动。

.hp-highlight {
   width: 280px;
   float: left;
}

在该点之后对所有3个项目进行居中将使用text-align:center on .home-highlight或将这3个包装在另一个div中,并将其上的左/右边距设置为自动。

答案 1 :(得分:0)

添加保证金:自动;到您的.hp-highlight类

这是你的css应该如何

.hp-highlight {
    margin:auto;
    width: 280px;
}

看到在这里工作:http://jsfiddle.net/RhMZ7/1/

答案 2 :(得分:0)

这甚至可以在IE7中使用;没有必要浮动。

.home-highlights {font-size: 0; text-align: center;}
.hp-highlight {
    display: inline-block;
    *display: inline; 
    vertical-align: top; 
    width: 280px;
    zoom: 1;
}