Monday, October 8, 2012

CSS Hack for Opera

Opera

The key to targeting Opera browser, just combine this code (@media all and (min-width: 0px){ your style }) on your style. For example: (see the yellow marker below)

@media all and (min-width: 0px){
   body {
      background: #ff0000; /* for Opera */
   }
}

No comments:

Post a Comment