1

我有一排图像坐在一个流体宽度的容器中,图像之间有一个固定宽度的空间。如果容器缩小,图像需要流畅地调整大小并仍然适合容器的整个宽度。

为此,我使用了 white-space: nowrap; 和显示:表格;在容器上并显示:table-cell;在它的孩子身上。

然而,图像似乎以不同的因子缩放,导致一些图像非常小,而另一些则仅略小一些。我需要它们按比例缩放,我不知道怎么做!任何帮助将不胜感激!

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

4

1 回答 1

1

正如我所看到的,这里的问题在于:

.fluid-width-fixed-space > div .inner
{
        margin-right: 50px;
}

在较小的屏幕尺寸上,该边距太大。因此,要么根据屏幕尺寸将边距减小到更小的尺寸,要么在较小的屏幕上为每个图像放置 100% 的宽度。

于 2015-12-12T21:41:41.703 回答