我想有一個圖像組的三個圖像。每個圖像必須具有相同的動態高度,並且圖像組必須使用它的父div的大小的100%(因此第一個圖像的margin-left與最後一個圖像的margin-right相同)動態的圖像寬度和高度
基本上我需要的是完全動態的CSS或JS解決方案。
我的目標:Width, height and if possible margin between images should be dynamic.
我到目前爲止有:
.img-group {
margin-top: 10px;
width: 100%;
}
.img {
\t float: left;
\t margin: 4%; /*Margin should, but doesn't have to be dynamic...*/
\t height: 20%; /*Height has to be dynamic...*/
}
<div class="container">
<div class="img-group">
<img class="img" src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Digital_Europe_Ultra_HD_-_Logo.svg/1024px-Digital_Europe_Ultra_HD_-_Logo.svg.png">
<img class="img" src="http://lofrev.net/wp-content/photos/2017/03/4k_ultra_hd_logo.jpg">
<img class="img" src="http://hometheaterreview.com/4K-HDR-logo-thumb.jpg">
</div>
</div>
是相同的縱橫比或尺寸的源圖像? –