文字を半透明にする【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 - - - - - - × × × -

ポイント h1 { filter:alpha(opacity=50); } <h1 style="position:absolute;top:0px;left:0px;">
説  明 IE,NN6両方で、まとめて透明度を指定するには;で区切ってfilterと-moz-opacityを併記します。
サンプル <html> <head> <title>文字を半透明にする【IE+NN6】</title> <style type="text/css"><!-- h1 { filter:alpha(opacity=50);-moz-opacity:0.5; } --></style> </head> <body background="bg.gif"> <h1 style="position:absolute;top:0px;left:0px;">Sample</h1> </body> </html>
補足説明 なし

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