Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CSSでこれを使用します:
text-shadow: 1px 1px 1px black;
IE 上のテキスト:
Firefox のテキスト:
ここでフィドル
IEでも動作させるにはどうすればよいですか?ありがとう。
MS-フィルターを使用..
p.shadowed { text-shadow: #0000ff 0px 0px 3px; /* Modern browsers */ filter: glow(color=#0000ff,strength=3); /* IE */ //alternative //filter: dropshadow(color=#ffff00,offX=5,offY=5); }