使用CSS在锚点内垂直对齐图像

时间:2013-12-20 09:37:51

标签: html css twitter-bootstrap

我想在锚元素中垂直对齐图像,如下所示:

<ul class="thumbnails">
    <li class="span2"> 
        <a href="#" class="thumbnail">
           <img src="http://www.forodefotos.com/attachments/barcos/17639d1298388532-barcos-vapor-antiguos-barcos-antiguos-vapor-mercantes.jpg" style="max-height: 150px">
        </a>
    </li>
</ul>

我看过很多帖子,但没有一个对我有用。我也使用Bootstrap缩略图类,我不知道这是否相关,这是它不起作用的原因。

我已经读过我可以设置行高,但有些不对劲。

请看一个简单的plunker。

http://plnkr.co/edit/DsQ80oEiHFn4ma4qfNW8

更新 我已更新了plunker。文本垂直对齐工作正常,但它仍不适用于图像。

1 个答案:

答案 0 :(得分:27)

试试这个:

.thumbnail {
    line-height: 150px; // height taken from OPs plunker
}
.thumbnail img {
   margin: auto;
   vertical-align: middle; 
   display: inline-block;
} 

添加display: inline-block;并将line-height设置为父锚元素,以垂直对齐中间图像。

LIVE EXAMPLE