In some articles that I've read, the use of * {margin:0; padding:0;} is discouraged as it would affect the web site's performance. So I turned to a reset.css stylesheet.
But I'm wondering, how does it affect the performance?
|
|
|
The reasoning behind this was discussed in this Eric Meyer post.
That said, the following chart from this Steve Souders post shows the difference in load times for a test page using universal selectors compared with a page using descendant selectors.
|
||||
|
|
|
it is effect the performance because the browsers engine have to apply this style to every element on the page this will lead to heavy rendering specially in the big pages with a lot of elements and this method is a bad practice too because it may remove a good default styles for some elements you may optimize this code by reduce the scope of it like using it on just some elements that make the problems like this
|
|||
|
|
|
Using Using a separate |
|||
|
|
|
I think the website you read that on needs its head checked, a reset style sheet is the way to go to level the playing field. The overhead is so marginal it won't make a difference especially with modern browsers. |
|||
|
|
It effects the webpage display because without its use we have to
etc. like substitutions to avoid a narrow white strip on the left and top of the webpage. |
||||
|
|