[css]代码库
<html>
<head>
<title>设置渐变阴影效果</title>
<style type=text/css>
<!--
h2 {
font-family:黑体;
font-size:15pt
}
.shadow1 {
position:absolute;
top:80px;
filter:shadow(color=#0000ff)
}
.shadow2 {
position:absolute;
top:150px;
left:20px;
filter:shadow(color=#000000, direction=90)
}
-->
</style>
</head>
<body>
<center>
<h2>设置渐变阴影效果</h2>
</center>
<hr>
<div class="shadow1">
<p style="font-family:'华文行楷';font-size:25pt; font-weight:bold;"> 云代码 http://yuncode.net </p>
</div>
<div class="shadow2">
<p style="font-family:'华文行楷'; font-size:28pt; font-weight:bold;color:#ff0000"> 云代码 http://yuncode.net </p>
</div>
</body>
</html>
[代码运行效果截图]