8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?