我有一个宽度固定的容器和3个宽度和高度不同的图像。我努力实现的目标:
如何执行此操作?
答案 0 :(得分:0)
为您的容器添加此样式:
.container {
display: flex;
justify-content: space-between;
}
这与图像的宽度和高度无关
答案 1 :(得分:0)
您可以为图像定义通用的固定高度和自动宽度,并在容器上将justify-content: space-between
与flex一起使用
html, body {
margin: 0;
}
.container {
display: flex;
justify-content: space-between;
}
.container>img {
height: 120px;
width: auto;
}
<div class="container">
<img src="https://placehold.it/300x200/fa0">
<img src="https://placehold.it/160x300/0fa">
<img src="https://placehold.it/500x180/f0a">
</div>