- ベストアンサー
背景画像をCSSコードで半透明にしたいのですが・・
背景画像をCSSコードで半透明にしたいのですが・・ 考えたコードはこのようです。 #sub{ background-image: url(背景画像); background-repeat: no-repeat; background-position: center center; float:left; filter:alpha(opacity=50) opacity:0.5; width:540px; /* D */ height:300px; } これだと背景を半透明にはできませんでした。 どのようにすればいいですか?
- みんなの回答 (1)
- 専門家の回答
質問者が選んだベストアンサー
#sub{ background-image: url(背景画像); background-repeat: no-repeat; background-position: center center; float:left; filter:alpha(opacity=50); opacity:0.5; -moz-opacity:0.5; width:540px; /* D */ height:300px; }