[求助]我这样用了CSS后为何没有投影?
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<style type="text/css">
<!--
.ds {
filter: DropShadow(color=#FF404040,offX=5,offY=5,positives=true);
font-size: 60px;
font-weight: bold;
color: #c00000;
}
.shad {
filter: Shadow(Color=#CC66FF, Direction=135);
font-size: 60px;
font-weight: bold;
color: #c00000;
}
-->
</style>
</head>
<body>
<p class="ds">ABCD</p>
<p class="shad">ABCD </p>
</body>
</html>
**************************************************************************************
我这样用了CSS后为何没有投影?帮忙看一下,我哪里出错了?谢谢!