嗯,可以的。但是其实讲真这个效果不太常用呢,因为只支持Webkit
/* 宽度和颜色 */-webkit-text-stroke: 4px navy
/* 默认 */
-webkit-text-stroke: inherit
-webkit-text-stroke: initial
-webkit-text-stroke: unset
即-webkit-text-stroke: <length><color>
<length>
文本描边宽.
<color>
文本颜色.
可以看出fillText实心文字先绘制,strokeText空心文字后绘制,他们坐标一致,所以直接覆盖可实心文字,形成了像文字内部描边通过text-shadow添加文字阴影可以形成对文字的外描边
注释:Internet Explorer 9 以及更早版本的浏览器不支持 text-shadow 属性。
可以看下这个文章,关于text-shadow
https://www.cnblogs.com/wuchuanlong/p/5985350.html
<style type="text/css">body { font-size:12pxfont-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>