The fiddle you've listed in a few comments DOES basically work in IE8. However, most of the actual styles you're applying are ones that aren't recognized by IE8 (box-shadow
, linear-gradient
, and border-radius
are all unsupported in IE8). If you use styles that IE8 recognizes (Like background-color
, or using an actual image for the background-image
), then it will be styled in IE8 as well.
Here's an example with a background-color
, so you can see it in IE8: http://jsfiddle.net/elezar/w8bBk/
Also, what you're doing in that example technically isn't styling the title. It's basically doing the same thing that @sureh and @9edge recommended, but you're adding the extra element via CSS rather than in the HTML itself. You'll actually still see the title tooltip in addition to the one that you're adding and styling.