+ 3
Not all browsers display HTML exactly the same. Browsers automatically add some margin space before and after each <p>. This can be changed using CSS margin.
+ 1
example CSS
p{
padding:0px;
margin:0px;
}
should remove all padding and margins from P tags