HTML中怎么把字设置成空心的
发布网友
发布时间:2022-04-23 07:01
我来回答
共1个回答
热心网友
时间:2022-06-17 04:44
HTML中是不可能设置成空心的 只能通过 CSS文字描边
代码如下
<style type=”text/css”>
body {
font:12px “Verdana”;
filter:alpha(style=1,startY=0,finishY=100,startX=100,finishX=100);
background-color:#3366cc;
}
.sizscolor {
font-size:14px;font-weight:bold;
position:absolute;
padding:4px;
filter:
Dropshadow(offx=1,offy=0,color=blue)
Dropshadow(offx=0,offy=1,color=blue)
Dropshadow(offx=0,offy=-1,color=blue)
Dropshadow(offx=-1,offy=0,color=blue);
color:#fff;
}
#english {
font-size:9px;
}
</style>
<span id=”english”>This is the prospect of filter - dropshadow.</span>
<br><br>
<div class=”sizscolor “>中文描边效果</div>
不过 IE6以及更早版本 好像不支持 你用IE8测试