sanoj lawrence
sanoj lawrence

Reputation: 993

Unexplained space between two div in bootstrap.css

Am using bootstrap.min.css i get unexplained space between two Divlisted with box

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>

enter image description here

Upvotes: 0

Views: 1121

Answers (1)

user3700339
user3700339

Reputation:

.box {
padding: 50px 30px;
background: #fff;
border-bottom: 1px solid #e9e9e9;
position: relative;
}

remove this line border-bottom: 1px solid #e9e9e9;

Upvotes: 1

Related Questions