Journal

Thoughts, ruminations, observations, and inspiration from theMechanism.

Safari CSS hack redux

January 8, 2008 | Posted by Jeffrey Barke | 27 comments

In March 2007, I wrote about a Safari CSS hack called the "Pound Safari Post Semicolon" hack (coined by Tony at Simian Design). As of Safari 3.0, this hack no longer works. However, there is a way to target Safari 3.0 (and Opera as well):

@media screen and (-webkit-min-device-pixel-ratio:0) {
/* Safari 3.0 and Opera 9 rules here */
}

As always, the disclaimer: nobody condones the use of hacks, but we all (well, most of us) have to make use of them at least once in a while. The above code targets both Safari 3.0 and Opera 9. Hopefully, it will be a future-proof hack, since the -webkit part of the selector will probably not be adopted by other browsers.

Example: The following code set the background color of the <body> element red in all browsers and then resets it to blue in Safari 3.0 and Opera 9.
body { background-color: red; }
@media screen and (-webkit-min-device-pixel-ratio:0) {
    body { background-color: blue; }
}

[demo]

Tested on Mac OS X version 10.5.1 with Safari version 3.0.4 (5523.10.6) and Mozilla Firefox version 2.0.0.11. Tested on Windows XP Professional Version 2002 SP 2 with Mozilla Firefox version 2.0.0.11, Opera 9.10, and Microsoft Internet Explorer 6. Hack from CSS, JavaScript and XHTML Explained.

Spread the Love

del.icio.us:Safari CSS hack redux digg:Safari CSS hack redux spurl:Safari CSS hack redux wists:Safari CSS hack redux simpy:Safari CSS hack redux newsvine:Safari CSS hack redux blinklist:Safari CSS hack redux furl:Safari CSS hack redux reddit:Safari CSS hack redux blogmarks:Safari CSS hack redux Y!:Safari CSS hack redux smarking:Safari CSS hack redux magnolia:Safari CSS hack redux segnalo:Safari CSS hack redux

27 Comments So Far

  • Works perfect!!!
    Thank you :-)

  • Thanks man!

    you saved the day :]

  • Hi, I am trying to use the hack to position a photo using this code but it doesn’t seem to work…any suggestions?

    @media screen and (-webkit-min-device-pixel-ratio:0) {
    img.photo { margin-right: 10px; }
    }

  • Hello Debbie,

    Not sure why your code isn't working—perhaps you could provide a link to the page in question.

    I copied your code (slight change—margin-left instead of margin-right) and created a demo here. Everything seems to be working fine.

  • Thanks a lot, it’s really works in Safari…

    Get your own gravatar for comments by visiting gravatar.com
    Nanda YK. Salunkhe
    January 23rd, 1:44 am
  • This does not work on Safari 1.3.

  • Hence "However, there is a way to target Safari 3.0". :)

    Not sure if the Pound Safari Post Semicolon hack will work in Safari 1.3, though it does in 2.0.

  • This is awesome. Perfect Safari 3 CSS hack.

  • It Works!! I’ve been using IE hacks for years. Haven’t had many troubles from Safari until late with absolute positioning. I look forward to the day they all surrender to the only truly compliant browser, FireFox. Thanks

  • Hi Jeffrey

    It took some digging to find this post, but well worth the effort. Works perfectly in Safari 3

    Thanks a million

  • Great hack. Works well. If only there was a way to target JUST opera or JUST safari…I need to target SAFARI alone. I think all browsers should have a conditional comment that allows for alternative stylesheets.

  • Works swell - thanks so much for sharing!

  • I guess I;m a but dumb, but I want to use this hack to select different levels of font-weight, so I can make the fonts among IE, FF, NS and SF look at least similar.

    Can’t seem to do it (i have a bunch of CSS commands, but only want to change font control).

    Do I need to duplicate the entire class with the @media screen and (-webkit-min-device-pixel-ratio:0) {
    as a lead in or can I just use the lead-in and specify only the changed font controls?

    Thanks.

    Get your own gravatar for comments by visiting gravatar.com
    TK Vanacoro
    April 17th, 2:46 pm
  • TK,

    You only need to specify the rules you want to override in Safari and Opera, not the entire class.

  • okay, so do I just but the overrides at the bottom of my .css page? I’m still just a bit confused.

    Is there an example that does not include BODY or must they all be BODY commands?

    Thanks again.

    Get your own gravatar for comments by visiting gravatar.com
    TK Vanacoro
    April 18th, 11:28 am
  • TK, set up your stylesheet as normal first:

    body { font-family: Verdana, Arial, sans-serif; }
    #test { color: #ff0000; }
    .callout { font-weight: bold; }

    These rules are served to all browsers, and they set the body font to Verdana, the font color of a <div> with the id "test" to red, and make the font bold for anything assigned the class callout.

    At the bottom of the stylesheet, we'll only override those rules we want to display differently in Opera and Safari. In this case, we want the font color of the "test" div to be black instead of red and we want the .callout class to be both bold and italic;

    @media screen and (-webkit-min-device-pixel-ratio: 0) {
         #test { color: #000; }
         .callout { font-style: italic; }
    }

    The entire stylesheet would look like this:

    body { font-family: Verdana, Arial, sans-serif; }
    #test { color: #ff0000; }
    .callout { font-weight: bold; }
    @media screen and (-webkit-min-device-pixel-ratio: 0) {
         #test { color: #000; }
         .callout { font-style: italic; }
    }

  • use an Opera hack to separate Safari from Opera:
    html:first-child>b\ody #menu ul {margin-top:0;}

    anyhow: big thanx for this Safari only solution!!!!!!!!

    cheers

  • Okay, the hack is cool, for a hack, but does anyone have any thoughts on how to get it to validate? Guess that’s the price you pay for using hacks…

  • Worked great! Thanks a lot! I wish there were also FF only css hacks.

  • Its working… thanks..

  • Does this work for inserting in external style sheets as well as within html?

  • Yep, it does work for inserting in external style sheets as well as within HTML.

  • Saved my life. Thanks!

  • Perfect! Worked exactly as described. Thanks so much.

    Get your own gravatar for comments by visiting gravatar.com
    Ian Ferguson
    May 15th, 9:51 am
  • Thank you from me, too.

  • Hi, anyone know of any hacks for Firefox (2.0.0.16 and down) OR for IE7?

    I’ve tried one of each that I found on various other forums, and neither works…

    Thanks,
    Jenni
    http://www.theweblotus.com

  • Jenni, you can target any version of Internet Explorer by using conditional comments: http://www.quirksmode.org/css/condcom.html

Post a Comment

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>


Search the Archives
Feeds

Upcoming events

  • 24 Jul 2008

O'Reilly user group program member

Add to Technorati Favorites

We endorse

Basecamp

Want to work with us yet? We’re ready when you are.