Tumble Flog – as seen by Adam Burmister – web super-hero in training

flog is a tumblelog written by
Adam Burmister; web developer

Written by
Adam Burmister
RSS Feed:
Subscribe
  1. 12th October 2009

    How to do cross-browser CSS opacity

    -ms-filter: “progid:DXImageTransform.Microsoft.Alpha(Opacity=0.8)”; /*for IE8, must be before "filter" rule*/
    filter: alpha(opacity=0.8); /* for IE7 - */
    -khtml-opacity: 0.8; /* for older Safari */
    -moz-opacity: 0.8; /* for older Mozilla and Netscape */
    opacity: 0.8; /* for recent Safari, Firefox, and CSS3 compliant browsers */

    CSS cross-browser opacity | Ian W. Scott

    Written by
    Adam Burmister
    When?
    12th October 2009, About 2 years ago
    Permalink