画像を半透明にする【IE+NN6】

動作ブラウザ 【 IE:4.0  NN:6.0】 ■CSSバージョン【-】
Internet Explorer Netscape Navigator iCab
3.0x 4.0x 4.5 5.0x 5.5 6.0 2.0x 3.0x 4.x 6.0 2.x
Windows × - × × × -
Macintosh × × × × - - × × × ×
UNIX - - - - - - × × × -

ポイント img { filter:alpha(opacity=50);-moz-opacity:0.5; }
説  明 ページ内の画像全てに同じ透明度を指定するにはスタイルの定義でimgタグにfilter,-moz-opacityプロパティに透明度を指定します。
サンプル <html> <head> <title>画像を半透明にする【IE+NN6】</title> <style type="text/css"><!-- img { filter:alpha(opacity=50);-moz-opacity:0.5; } --></style> </head> <body background="bg.gif"> <img src="image.jpg" width="160" height="120"><br> <img src="image.jpg" width="160" height="120"><br> </body> </html>
補足説明 なし

■サンプルを実行する >>実行
■各ブラウザでの動作結果を見る >>View!