Reputation: 765
I'm novice in css.Could you tell me where is the margin 12px come from?
Upvotes: 0
Views: 53
Reputation: 228
it's because you have an conflict in your css code, if you want to have 0 margin in this case, you must call "important" at the end of your 0 margin
Upvotes: -1
Reputation: 40990
As you can also see that It is coming from user agent stylesheet. Every browser has some css rule for every element which affects the styling.
You can override this value with your own stylesheet as user agent stylesheet as lowest precedence.
p{
padding:5px;
margin: 0;
}
Upvotes: 3