gpt4 book ai didi

css - 推特 Bootstrap : Centered Thumbnails

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

我有一个缩略图列表。它们有固定的尺寸。我希望连续缩略图的数量随窗口的宽度而变化。

使用 Twitter Bootstrap 很容易:http://jsfiddle.net/charlesbourasseau/5WvAL/

问题是,当屏幕可以接受像 4.5 缩略图时,它们都向左对齐,而我在右边有一个间隙。

我想知道是否有可能缩略图保持居中,所以左边和右边的差距总是保持不变......

最佳答案

只需覆盖缩略图 li 上的 float:left 属性并将它们设置为 display:inline-block 然后设置 text-align:center 在父 ul 上,像这样:

CSS

.thumbnails {
text-align: center;
}
.thumbnails li {
width: 150px;
height: 100px;
background: red;
float: none !important; /* to overwrite the default property on the bootstrap stylesheet */
display: inline-block;
*display: inline; /* ie7 support */
zoom: 1;
}

演示:http://jsfiddle.net/thirtydot/5WvAL/21/

关于css - 推特 Bootstrap : Centered Thumbnails,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11120186/

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