Css样式表的一个小问题

来源:百度知道 编辑:UC知道 时间:2024/09/28 10:01:20
.title{ margin-top:6px;margin-left:10px; font-size:12px; color:#000; FILTER: dropshadow(color=#000000,offx=1px,offy=1px,Positive=1);}

html页:
<div class = "title">文字文字</div>

谁知道为什么不出现阴影呢?

我刚试了下```可以的呀~~~~
你是不是忘了加<style type="text/css">呀

<html>
<head>
<title></title>
<style type="text/css">
<!--
.title{ margin-top:6px;margin-left:10px; font-size:12px; color:#000; FILTER: dropshadow(color=#000000,offx=1px,offy=1px,Positive=1);}
-->
</style>
</head>
<body>
<div class="title">文字文字</div>
</body>
</html>