img
{filter:none}
这样,页面中的所有图片就不会有发光效果了!
把body的stlye属性删除掉,再把你要发光的字体加入到一个DIV
用css控制div,定义id,class,任一个都可以,不建议用标签,字体的设置是font:15pt/17pt
bold
"arial"
normal
,依次是字体大小,粗细,和字体,还有其他的,如果设置颜色,直接用color:#000000,这样的就可以了。。。。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
body {
font-color:red
font:14px "Verdana"
background-color:#3366cc
}
.sizscolor {
position:absolute
padding:4px
filter:
Dropshadow(offx=1,offy=0,color=white)
Dropshadow(offx=0,offy=1,color=white)
Dropshadow(offx=0,offy=-1,color=white)
Dropshadow(offx=-1,offy=0,color=white)
}
.STYLE1 {position: absolutepadding: 4pxfilter: Dropshadow(offx=1,offy=0,color=white) Dropshadow(offx=0,offy=1,color=white) Dropshadow(offx=0,offy=-1,color=white) Dropshadow(offx=-1,offy=0,color=white)color: #FF0000}
</style>
</head>
<body>
<br>
<div class="STYLE1">政策法规</div>
</body>
</html>