ドロップシャドウフィルタ

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

ポイント .ds { position:absolute;filter:dropshadow(offX=8,offY=4); }
説  明 ドロップシャドウフィルタはdropshadow()になります。dropshadow()では以下のパラメータを指定することができます。

color カラー名またはカラーコード
offX オフセットX(横方向のずれ具合)
offY オフセットY(縦方向のずれ具合)
positive true:通常。false:カットアウト(内側に影)。
enabled trueまたはfalse。フィルタ効果の有無。
サンプル <html>
<head>
<title>ドロップシャドウ(影)</title>
<style type="text/css"><!--
.ds { position:absolute;filter:dropshadow(offX=8,offY=4); }
--></style>
</head>
<body>
<h1 class="ds">ドロップシャドウ (Dropshadow)</h1>
<br><br><br>
<div>
 上の見出しには、影がついています。
</div>
</body>
</html>
補足説明 なし

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