文字を半透明にする【IE】

動作ブラウザ 【 IE:4.0  NN:-】 ■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;">
説  明 半透明にするにはfilter(opacity=不透明度)のように指定します。不透明度は0から100の範囲となります。0で完全に透明、100で不透明になります。文字の透明度を指定する場合はfilter以外にpositionでページ上の座標を指定する必要があります。
サンプル <html> <head> <title>文字を半透明にする【IE】</title> <style type="text/css"><!-- h1 { filter:alpha(opacity=50); } --></style> </head> <body background="bg.gif"> <h1 style="position:absolute;top:0px;left:0px;">Sample</h1> </body> </html>
補足説明 なし

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