March 16, 200917 yr Who of you use global css resets when designing a page? Is it really necessary? What are your thoughts on the matter?
March 16, 200917 yr I do, simply because to have everything reset to a common denominator means that it's one less thing to worry about when I start testing across the browsers. I use an older version of the Eric Meyer reset, though there are others around.
March 16, 200917 yr Its not something ive used in the past, but i am looking at using it in my next few projects. Reaper
March 16, 200917 yr I haven't really used them to date, but then have only got 3 sites running at the moment. i expect as my sites become more complicated i may use it more for the reason zig mentioned. On the other hand, I have heard other ppl say that it can sometimes cause other problems although I personally can't tell you more about this. This 'Killer Collection' of global resets looks good....
March 16, 200917 yr A quote from alan gresley. You are knocking down margins and paddings and building them back up again. This is adding unnecessary CSS. The design shouldn't really be about what you want but rather be open to the needs of the audience of a site. You are trying to have to much control and one reason authors desire such control is due to the expectations of a client or clients seeing the space on a web page as real estate. Resets are vital for pixel perfection, they should be unnecessary, but they're not. They're excessive though as most people just slap them in, as opposed to integrating them. Look what happens without a full reset sheet: http://snook.ca/testing/applediff.gif Not for the pixel perfectionist
March 16, 200917 yr That's a very good link Guezala I normally use the Eric Meyer reset but I'm considering using the Tripoli reset for my next project.
March 16, 200917 yr I always use a global reset for cross browser integrity. I wonder if there will be a *{reset;} in any new standards of CSS - that would be extremely useful. One that resets everything.
March 16, 200917 yr I use a tweaked version eric meyer reset in all my work. It means that I know for certain my site will work in all browsers before I start testing for additional niggles. I also have my own framework files - I add them all to a project at the beginning, remove what I won't need (i.e. two column stuff if the site is three column) and then I basically have everything I need to get a site to a reasonable stage, complete with 960 grid and vertical rhythm, in just a few minutes work. They shouldn't be necessary, but when every browser does things slightly differently it is useful to get back to some kind of standard. I advise against using the *{} selector to do anything though - this is a bad way of doing things as it sets every tag ever to have no margin or padding. Eric Meyer and others have resets which list exactly which tags to change & therefore use less resources.
Create an account or sign in to comment