My CSS is:
p {
border-style: solid;
border-width: 0 15px 0 0;
border-color: blue;
margin-top: 20px
}
As you can see from http://jsfiddle.net/dcAQW/1, this creates a white space between the two paragraphs. How can I remove that whitespace (i.e. make it blue)?
This is because
marginis out of box butpaddinginside the box. So you should usepaddingto get take account.In this picture border that browser render is the red line.
