css:opacity
This is an old revision of the document!
CSS - Opacity
-khtml-opacity: .5; // old safari -moz-opacity: .5; // old firefox -ms-filter: alpha(opacity=50); // new ie -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); // new ie filter: alpha(opacity=50); // old ie opacity: 0.5; // modern gecko and webkit
NOTE: Most of the old browers are not used, so this could be simplified to only:
filter: alpha(opacity=50); opacity: 0.5;
css/opacity.1589973302.txt.gz · Last modified: 2020/07/15 09:30 (external edit)