Hi,
Safari is rendering the margins (and possibly the list-style-positions) of my ordered and unordered lists one way and chrome another (chrome looks like FF and IE).
Safari:

Chrome (FF, IE):

The CSS looks like this:
ul {
list-style-image: url('images/bullet.png');
list-style-position: outside;
margin: 4px 0 10px 30px;
}
ol {
list-style-type: decimal;
list-style-position: outside;
margin: 4px 0 10px 30px;
}
Webkit hacks don't work because they target both Safari and Chrome. I've tried some other things I've found on the web like...
::root (prepend)
# (prepend)
(perhaps these are webkit hacks, idk)
...but success has eluded me.
Anyone know how to target Safari and not Chrome so that I can make Safari's rendering look like Chrome, FF, and IE?
Thanks so much!
Bookmarks