我有一排图像放在一个流体宽度的容器中,图像之间有一个固定宽度的空间。如果容器收缩,图像需要流畅地调整大小,并且仍然适合容器的整个宽度。
为此,我使用了空白:nowrap;和显示:表;在容器上显示:表格单元格;在其子女身上。
然而,这些图像似乎在不同的因素下缩放,导致一些图像非常小,而另一些图像只是稍微小一些。我需要它们按比例缩放,我不知道怎么做!任何帮助都将不胜感激!
HTML:
<div class="container">
<div class="row">
<div class="fluid-width-fixed-space col-xs-12 col-sm-8 col-md-10 col-lg-12">
<div>
<div class="inner"><img src="http://vriesia.greyhat.nl/prospect/image/demobeeldgroep-andrelon/andrelon-1.jpg" alt=""></div></div><div><div class="inner"><img src="http://vriesia.greyhat.nl/prospect/image/demobeeldgroep-andrelon/andrelon-2.jpg" alt=""></div></div><div><div class="inner"><img src="http://vriesia.greyhat.nl/prospect/image/demobeeldgroep-andrelon/andrelon-3.jpg" alt=""></div></div><div><div class="inner"><img src="http://vriesia.greyhat.nl/prospect/image/demobeeldgroep-andrelon/andrelon-4.jpg" alt=""></div></div><div><div class="inner"><img src="http://vriesia.greyhat.nl/prospect/image/demobeeldgroep-andrelon/andrelon-5.jpg" alt=""></div></div><div><div class="inner"><img src="http://vriesia.greyhat.nl/prospect/image/demobeeldgroep-andrelon/andrelon-6.jpg" alt=""></div> </div>
</div>
</div>
</div>
CSS:
.fluid-width-fixed-space
{
white-space: nowrap;
display: table;
}
.fluid-width-fixed-space > div
{
display: table-cell;
}
.fluid-width-fixed-space img
{
display: inline-block;
max-width: 100%;
height: auto;
border: 1px solid #000;
vertical-align: baseline;
}
.fluid-width-fixed-space > div .inner
{
margin-right: 50px;
}
有关实时演示,请参阅此笔:http://codepen.io/anon/pen/PZPjop
正如我所看到的,这里的问题在于:
.fluid-width-fixed-space > div .inner
{
margin-right: 50px;
}
在较小的屏幕尺寸上,这个余量太大了。因此,要么根据屏幕大小将边距缩小到较小的大小,要么在较小的屏幕上为每个图像设置100%的宽度。