我在引導程序項目中有此代碼,並且我無法將響應式div並排放置在它們之間沒有邊距。誰能幫我?如何清除引導程序中響應的div之間的邊距
這裏是我的代碼:
.container-vip {
width: 100%;
height: 300px;
background: #09C;
border: 1px solid #fff;
padding: 0;
margin: 0;
float: left;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<div class="row">
<div class="col-xs-6 col-sm-6 col-md-3 col-lg-3">
<div class="container-vip">
</div>
</div>
<div class="col-xs-6 col-sm-6 col-md-3 col-lg-3">
<div class="container-vip">
</div>
</div>
<div class="col-xs-6 col-sm-6 col-md-3 col-lg-3">
<div class="container-vip">
</div>
</div>
<div class="col-xs-6 col-sm-6 col-md-3 col-lg-3">
<div class="container-vip">
</div>
</div>
</div>
你不需要保證金?你可以解釋嗎? –
創建新的CSS規則以覆蓋設置邊距的引導樣式。 – Raider