I am using Bootstrap 2.3 on my site. I have set the foll css:
body,section{
padding:0;
margin:0;
}
Yet, for the life of me, I can't understand why I m seeing a white dash of the body in between the sections?? The Link
I am using Bootstrap 2.3 on my site. I have set the foll css:
body,section{
padding:0;
margin:0;
}
Yet, for the life of me, I can't understand why I m seeing a white dash of the body in between the sections?? The Link
Your <h3>
causes that. Put this:
h3{
margin:0;
padding:0;
}
Set below style to <h3>
tag
margin-top:0px;