① CSS div文字描边 兼容IE6 IE7 IE8 火狐浏览器
<style type="text/css">
body { font-size:12px; font-family:Arial, Helvetica, sans-serif;
filter:alpha(style=1,startY=0,finishY=100,startX=100,finishX=100);
background-color:#666666;
}
.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);
text-shadow:0 0 1px #FFF;
}
</style>
</head>
<body>
<span>ie用滤镜,火狐用css3</span>
<br />
<div class="sizscolor">中文描边效果</div>
</body>
</html>