twitter bootstrap缩略图对齐问题

时间:2012-07-21 14:50:52

标签: css twitter-bootstrap thumbnails

我在Twitter Bootstrap中对齐缩略图时遇到问题:

  1. 我正在使用流畅的布局
  2. 我的缩略图是183 x 154 px
  3. 我想使用固定图像尺寸,但是可变边距以及缩略图在它们所在的区域内完美对齐。
  4. 这是我到目前为止的结果:

    http://i.stack.imgur.com/1qUA6.png

    您可能会注意到;图像对齐到左边。 缩略图包装如下:

     <div class="row-fluid">
         <div class="span6">
    

    我的HTML:

      <ul id="nwthumbs">
         <li><a href="#" ><img src="Fernando-Alonso-Ferrari-3_2799133.jpg"><h2><span>Fernando Alonso has credited Ferrari's decision to stop for a new set of we...</span></h2></a>
          <button class="btn btn-mini" type="button" >Read More</button></li>
          <li><a href="#" ><img src="Sir-Alex-Ferguson_2794602.jpg">
              <h2><span data-bind="html: titleShortened">Sir Alex Ferguson says there is 'no chance' of Manchester United repeating ...</span></h2></a><button class="btn btn-mini" type="button" >Read More</button></li><li><a href="#" ><img src="Paul-Bohan-2012_2799199.jpg">
     <h2><span>Local Hero claimed a first victory of the year with a determined effort in ...</span>
          </h2> </a><button class="btn btn-mini" type="button" >
                                            Read More</button>
                                    </li>
                  <li><a href="#" ><img src="Douglas_2675905.jpg">
          <h2><span>FC Twente chairman Joop Munsterman admits he is unsure whether Newcastle Un...</span></h2> </a><button class="btn btn-mini" type="button" >
                                            Read More</button>
                                    </li>
                                    <li><a href="#" >
                      <img src="Darryl-Westlake-Walsall_2465450.jpg">
                                        <h2>
          <span>Sheffield United have confirmed the signing of promising defender Darryl We...</span>
                                        </h2>
                                    </a>
                                        <button class="btn btn-mini" type="button" >
                                            Read More</button>
                                    </li>
       </ul>
    

    我正在使用Twitter Bootstrap。

    到目前为止我所尝试的是使图片大小可变;宽度100%和高度100%,这是有效的,但是当调整大小到较小的ViewPort时,它将调整图像大小而不是包装图像,使它们出现在两列中。

1 个答案:

答案 0 :(得分:2)

尝试使用此CSS:

#nwthumbs {
  text-align:center;
}

#nwthumbs > li {
    display: inline-block;
    *display:inline; /* ie7 fix */
    float: none; /* this is the part that makes it work */
}