3

TwitterBootstrapでサムネイルをうまく整列させることに問題があります。

  1. 流動的なレイアウトを使用しています
  2. 私のサムネイルは183x154ピクセルです
  3. 固定の画像サイズを使用したいのですが、余白が可変であり、サムネイルがその領域内で完全に整列していることを確認します。

これは私がこれまでに持っているものの結果です:

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>

TwitterBootstrapを使用しています。

私がこれまでに試したことは、写真を可変サイズにすることです。幅100%と高さ100%で機能しますが、小さいビューポートにサイズ変更すると、画像が2列に表示されるように折り返されるのではなく、画像のサイズが変更されます。

4

1 に答える 1

2

Try with this CSS :

#nwthumbs {
  text-align:center;
}

#nwthumbs > li {
    display: inline-block;
    *display:inline; /* ie7 fix */
    float: none; /* this is the part that makes it work */
}
于 2012-07-24T03:39:27.957 に答える