Reputation: 993
Am using bootstrap.min.css i get unexplained space between two Div
i used the following code to remove white space, But does't worksdiv + div {margin-top:0px;}
how to remove white space
<section id="service" style="background-color:#009999;">
<div class="container">
</div>
</section>
<!-------------white space appear here------------>
<section id="contact" style="background-color:#009999;">
<div class="container">
</div>
</section>
Upvotes: 0
Views: 1121
Reputation:
.box {
padding: 50px 30px;
background: #fff;
border-bottom: 1px solid #e9e9e9;
position: relative;
}
remove this line border-bottom: 1px solid #e9e9e9;
Upvotes: 1