我想在父div
内有3 div
个picture:
当页面大小发生变化时,只减少它们之间的空间而不移动到另一条线而不使用响应式设计。
答案 0 :(得分:2)
您可以使用%%而不是px - 像素。
CSS:
margin-left:10%;
margin-right:10%;
答案 1 :(得分:0)
#wrapper {
display: flex;
justify-content: space-between;
background: #999;
}
#wrapper > div {
background: #f00;
width: 100px;
margin: 10px;
}

<div id="wrapper">
<div>1</div>
<div>2</div>
<div>3</div>
</div>
&#13;