gpt4 book ai didi

css - 推特 Bootstrap 缩略图对齐问题

转载 作者:行者123 更新时间:2023-11-28 10:05:48 25 4
gpt4 key购买 nike

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

  1. 我正在使用流体布局
  2. 我的缩略图是 183 x 154 像素
  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>

我正在使用 Twitter Bootstrap。

到目前为止,我尝试过的是使图片大小可变;宽度 100% 和高度 100%,这行得通,但是当调整到较小的 ViewPort 大小时,它会调整图像大小而不是环绕图像,以便它们显示在两列中。

最佳答案

试试这个 CSS:

#nwthumbs {
text-align:center;
}

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

关于css - 推特 Bootstrap 缩略图对齐问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11593167/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com