2
這是我製作的響應式網格。我想在所有元素周圍添加10px的邊距。 我需要這些邊距始終保持相同的寬度。 但是應用利潤率打破了電網的響應方面。我需要利潤率來「擠壓」div而不是「推」它。將固定邊距添加到響應網格
.wrapper {
margin: 0 auto;
max-width: 940px;
background: #EBEBEB;
}
.ideas__gallery__h3 {
color: #333;
font-weight: bold;
font-size: 22px;
text-align: center;
margin-bottom: 34px;
}
.one {
width: 33.3333333333333333%;
height: 310px;
background: lightblue;
float: left;
}
.two {
width: 33.3333333333333333%;
height: 310px;
background: lightpink;
float: left;
}
.three {
width: 33.3333333333333333%;
height: 310px;
background: lightyellow;
float: left;
}
.four {
width: 33.3333333333333333%;
height: 310px;
background: lightcyan;
float: left;
}
.five {
width: 66.6666666666666666%;
height: 310px;
background: lightgreen;
float: left;
}
.six {
width: 66.6666666666666666%;
height: 310px;
background: lightskyblue;
float: left;
}
.seven {
width: 33.3333333333333333%;
height: 310px;
background: lightgoldenrodyellow;
float: left;
}
<div class="wrapper">
<div class="ideas__gallery">
<h3 class="ideas__gallery__h3">Headline</h3>
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
<div class="four"></div>
<div class="five"></div>
<div class="six"></div>
<div class="seven"></div>
</div>
</div>