Associate
- Joined
- 8 Sep 2007
- Posts
- 265
- Location
- Southampton
I'm not into using hacks or cluttering up the source with loads of divs. I gave up trying to make a website look exactly the same in all browsers long ago. On one of my sites I'm using CSS3 to add curves, box shadow and text shadow to my navigation bar. If the user is using a browser that doesn't support CSS3 they just get a plain version which i still think looks fine.

Code:
#navigation li a {
border-radius:0.385em;
-o-border-radius:0.385em;
-icab-border-radius:0.385em;
-khtml-border-radius:0.385em;
-moz-border-radius:0.385em;
-webkit-border-radius:0.385em;
}