Welcome back,
Let me tell u what's happening
- * {padding: 0; margin: 0;}
This code zeroes all the varying browser default padding/margin settings ('*' being the universal selector that's applied to all elements in the page).
If u want the spaces between paragraphs to remain, u can add this
- p{
-
margin-bottom:1.2em;
-
}