After too many years of doing this, this is the best advice I can give: The most common issues are inconsistent spacing between elements. Don't try to understand why this may be, instead, use padding if margin isn't working, vice versa otherwise, and move the layout to another equivalent element (simple wrapper, etc.) if you run into a really sticky problem.<p>This has solved about 90% of the CSS-related cross-browser layout problems I've experienced.<p><i>Do not use hacks unless you absolutely must!</i><p>You should never need to target a non-Microsoft browser. When you need to target IE,<p><pre><code> * html selector (IE6-inclusive)
</code></pre>
and<p><pre><code> html:not([dummy]) selector (IE7-exclusive)
</code></pre>
Even though they work, these are for last resorts and should pretty much never be used. Most of the time that I see a cross-browser hack used, it really was due to the author's poor understanding of the CSS issue at hand and would've been corrected with good defensive styling using simple, well-supported styles.