text-stroke文字描边
语法:
- text-stroke:<text-stroke-width> <text-stroke-color>
想象一个红色描边的文字:
代码
- text-stroke: 1px #f00;
text-stroke是符合属性,可以分拆为text-stroke-width和text-stroke-color两个属性
text-fill-color文字填充
语法:
- text-fill-color:<color>
text-fill-color会覆盖color所定义的字体颜色:
- text-fill-color:#f00;
- color:#000;
在webkit下你将看到红色的文字