LoginSignup
8
8

More than 5 years have passed since last update.

IE6などでも、要素の透過度を指定する

Posted at

CSS3に対応していないIEでも、要素の透過度を指定することが出来ます。

#selector {
   opacity: 0.10;/* CSS3対応ブラウザ(Firefox, Chrome, Safariなど)向け*/
   -moz-opacity: 0.10;/* Firefox older*/
   filter: alpha(opacity=10);/* Netscape*/
   -ms-filter: alpha(opacity=10);/* IE6+ */
}
8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8