Zeroing margins on CSS a good practice?
I just started to seriously study CSS and went through practicing my CSS
skills. One particular issue I encountered was the first element on top
would usually like to have a margin/padding on certain browsers.
So my question come down to, is it a good practice to do
* {
margin: 0px;
padding: 0px;
border: 0px;
}
on my CSS documents? I am reading mixed answers on this. Some say this
makes compatibility across browsers awesome and some say it makes
rendering slow (not a good idea on older systems).
No comments:
Post a Comment