views:

163

answers:

5

Hi ...

Many times when I read books related to CSS I see things like this "this will not work on some browser", "this hack will work for that browser".

Where I can all information that I need to know the hacks for working for all browsers?

thanks

+10  A: 

I suggest Quirksmode. Very useful resource for web development.

Here is a link for the CSS page on Quirksmode:

http://www.quirksmode.org/css/contents.html

DrJokepu
Agreed, Quirksmode is the best resource for CSS and JavaScript browser compatibility information.
Ryan Doherty
A: 

You could start with:

CSS contents and browser compatibility

And if you're interested in e-mail clients as well as browsers:

Guide to CSS support in email clients (2008)

Ates Goral
A: 

I always found this particular comparison useful, as it shows whether or not a particular feature is supported, and how well they are supported. It may prove useful for you as well.

This document will summarize the level of support for web standards and maturing technologies in popular web browsers. It covers the Internet Explorer, Firefox, and Opera web browsers, with focus on the HTML, CSS, DOM, and ECMAScript technologies.

Other than that, Quirksmode is a great resource.

Matt Refghi
+1  A: 

I've found the SitePoint CSS reference very helpful.

Charlie Martin
Agreed, SitePoint is great stuff
DrJokepu
A: 

Position Is Everyting can be useful for finding solutions to problems (mostly related to IE6 and below). They don't have a browser comparison and they have names for bugs that may not always be intuitive, so it's not always easy to find specific incompatibilities.

The articles go into a lot of detail and usually have several possible fixes, so once you've found a rendering bug, it can be quite useful. I wouldn't recommend using all their fixes directly, since they often involve browser-specific CSS hacks. It's usually better to use conditional comments.

Matthew Crumley