3

我需要在 div 中垂直和水平居中图像。我正在使用 display inline-block 属性。

HTML

<div class="container">
   <div class="box">
     <div class="image-container"><img src="image.gif"></div>
   </div>
</div>

CSS

.box {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 1px solid #f2f2f2;
    margin-left: 1px;
    margin-top: 5px;
}
4

3 回答 3

4

这种方法非常适用于未知维度的动态内容。

jsFiddle 示例

基本上,我们vertical-align:middle用于垂直居中和text-align:center水平居中。为了vertical-align:middle在 a 上工作div,我们需要将父元素设置为display:table,并将目标子元素设置divdisplay:table-cell。当然,您可以通过定位来实现这种居中absolute,但是,这需要您知道img. 这种方法适用于未知维度。

HTML

<div class="container">
   <div class="box">
       <img src="http://placehold.it/200x200">
   </div>
</div>

CSS

html, body {
    height:100%;
    width:100%;
    margin:0px;
}
.container {
    display:table;
    vertical-align:middle;
    text-align:center;
    height:100%;
    width:100%;
}
.box {
    display:table-cell;
    vertical-align:middle;
}
于 2013-11-07T18:42:38.633 回答
0

You can put the image into a table like this:

  <table class="container">
     <tr class="box">
         <td class="image-container"><img src="image.gif"></td>
     </tr>
  </table>

And then use this in your CSS:

.image-container {
   vertical-align: middle;
   text-align: center;
}

JSFiddle

于 2013-11-07T18:35:49.890 回答
0

对于水平,您可以使用:

.box {
display: inline-block;
width: 32px;
height: 32px;
border: 1px solid #f2f2f2;  
margin:auto;
text-align:center;
}

据我所知,你可以使用垂直

#content {position:absolute; top:50%; height:240px; margin-top:-120px; /* negative half of the height */}

请阅读: http ://blog.themeforest.net/tutorials/vertical-centering-with-css/

于 2013-11-07T18:32:59.870 回答