CSS3 text-outline属性
作用:text-outline 属性规定文本轮廓。
语法:
text-outline: thickness blur color;
thickness:设置轮廓的粗细。
color:轮廓的颜色。
blur:轮廓的模糊半径,可省略。
注:所有主流浏览器都不支持 text-outline 属性。
CSS3 text-outline属性的使用示例
设置text-outline(文本-轮廓):
p.test { text-outline: 2px 2px #ff0000; }