2007年9月28日

CSS中文字描邊效果






中文字描邊效果
可以做出像圖像白邊一樣的效果。

<style>

body {
font:12px;
filter:alpha(style=1,startY=0,finishY=100,startX=100,finishX=100);
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);
}

</style>