1
1

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.

【CSS】-moz-opacityとfirefox

Last updated at Posted at 2016-01-11
a {
	-moz-opacity: 0.5;
	opacity: 0.5;
}

環境

firefox 43.0.4

解説

不透明度を設定するときに、firefoxでは-moz-opacityを使うって認識でいたが、firefoxの開発ツールのwebコンソールでは次のようなメッセージが出る。
opacityによると-moz-opacityはGecko 1.9.1 (Firefox 3.5) 以降では、-moz-opacity のサポートをやめてしまっているので、opacityを使用せよと書いてあるので、-moz-opacityはもう設定しなくていいみたい。


不明なプロパティ '-moz-opacity' が使用されています。  このスタイル宣言は無視されました。

参考文献

opacity
CSSで透明度/透過度(opacity)の指定をする方法

1
1
2

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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?