转自:http://blog.163.com/hongshaoguoguo@126/blog/static/18046981201322395338479/
CSS边框的一个不足就是只有矩形的元素才能使用。
-webkit-text-stroke可以为文字添加边框。它不但可以设置文字边框的宽度,也能设置其颜色。
而且,配合使用color: transparent属性,还可以创建镂空的字体!
h3 {
color: transparent;
-webkit-text-stroke: 4px red;
}