I'm starting a new web project and I was planning to use a css reset stylesheet to have the same starting point styles in all major browsers. Have you used css resets? Would you recomment it?
Related: Best css reset
|
31
|
I'm starting a new web project and I was planning to use a css reset stylesheet to have the same starting point styles in all major browsers. Have you used css resets? Would you recomment it? Related: Best css reset |
||||
|
|
|
I recommend using a reset stylesheet. Good ones make cross browser issues very few and speed up the development of the layout a lot in my experience. Hands down |
||||||||||||
|
|
|
Point Yes, absolutely use a CSS Reset if you plan to develop for cross-browser compatibility. I've used YUI, Eric Meyer Reset, and an earlier one developed by Faruk Ateş (whose website has gone dark.) One additional thing to keep in mind is that resets are designed to tear down differences. In most cases, this usually takes the form of removing padding and margins that would otherwise be inherent browser defaults. Once you've torn down the differences, it's up to you to build up element padding and margins. If you find yourself in this situation, you'll probably want to look at the Stack Overflow question CSS Reset, default styles for common elements. Counterpoint You should also read counterpoint arguments against the use of CSS Resets. Jonathan Snook says he doesn't use resets and Eric Meyer wasn't upset at all. So there are folks who don't use resets and even some who actively discourage the use of resets. Understanding both sides of the issue should help you make an informed decision as to whether they're right for you or not. |
||||||||
|
|
|
Yes. Yahoo's YUI Reset is a solid choice. |
||||
|
|
|
The goal of a reset should be to remove undesired default browser stylings where you are not adding your own stylings. For example if you have a site-wide styling for paragraphs it is pointless to have an earlier rule removing a margin/padding etc. from paragraphs and one applying them later. However if you are styling your headings or unordered lists selectively then you will want a reset global styling to remove padding/margins etc. with special effects created by more specific rules like |
||
|
|
|
|
I have started looking at CSS frameworks and reset style sheets lately, and I have come to a basic conclusion. Why reset? Set instead. Simply put, replace your reset style sheet with one that SETs all the basic styles to the defaults you would like to start from instead. You still get a good baseline across browsers by setting all your styles to a standard format. I just don't see the point of doing something to force me to specifically undo it later. I would much rather start with a style sheet that has a reasonable starting point that overrides the differences between browsers while at the same time making elements appear as I would expect them to everywhere. So how about we see the death of the reset style sheet and the birth of frameworks with set style sheets. I think I will work on creating my own set.css in the near future. |
||
|
|
|
|
I think it's a good idea and can really speed up web development. A few comments about which one is better can be found in this question. |
||
|
|
|
|
This is an old question but I just thought I'd add a disclaimer. CSS resetting can cause problems in situations where you need to render legacy presentational attributes. This may happen, for instance, with certain RichText editors, HTML webmail or older HTML generating code. CSS rules ALWAYS override HTML ones, even when the HTML values are on the element itself. This means your reset values will break something like This is not to say you shouldn't consider reset css, just that it some situations it will cause problems of its own. |
||
|
|
|
|
I personally do not use a reset stylesheet, and would not allow anyone on my team to do so. Anyone who is sufficiently competent with CSS should just be able to set up their styles correctly from the start, without the need for this extra stylesheet, which just adds bulk to the page. One of the linked answers above sums it up nicely - why reset a bunch of styles just to override them with your own values? |
||
|
|
|
|
I definately use a CSS reset. As others have stated it helps having a baseline to start with to reduce the number of quirks you may encounter when dealing with more complex styles across an array of browsers. When I first read about the CSS reset, I thought it was a hack designed for the true fanatics. However, a recent project justified its use many time over when just making a consistent layout between IE6, IE7, and Firefox. If you were just building an intranet website aimed at IE7, then it may not be that critical. However, its a really low performance hit and helps in establishing a consistent style. |
||
|
|
|
|
Yes, and i encourage you to use a CSS Reset, because you can more control your layout I use Reset.css from Eric Meyer |
||
|
|