通過使用只有百分比,如何創建適合指定容器的相等保證金?我在下面嘗試,但未能實現相同的保證金。具有相等保證金的響應式2線網格
body {
padding:0;
margin:0;
background:#000;
}
.category_wrap div {
float: left;
width: 49%;
background: red;
height: 50px;
margin-left: 1%;
margin-bottom: 1%;
overflow: hidden;
}
<div class="category_wrap">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
<div>7</div>
<div>8</div>
</div>
如果你想在兩側相等的保證金,你應該有1個%的保證金我正確的。你的要求是什麼? –