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上的文字:
火狐上的文字:
在这里小提琴
我怎样才能让它也能在 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); }