-webkit-text-stroke-color

**-webkit-text-stroke-color** CSS 属性指定文本字符的描边颜色。如果未设置此属性,则使用 color 属性的值。

语法

css
/* <color> values */
-webkit-text-stroke-color: red;
-webkit-text-stroke-color: #e08ab4;
-webkit-text-stroke-color: rgb(200 100 0);

/* Global values */
-webkit-text-stroke-color: inherit;
-webkit-text-stroke-color: initial;
-webkit-text-stroke-color: revert;
-webkit-text-stroke-color: revert-layer;
-webkit-text-stroke-color: unset;

<color>

描边的颜色。

正式定义

初始值currentcolor
应用于所有元素
继承
计算值计算的颜色
动画类型一个<color>

正式语法

-webkit-text-stroke-color = 
<color>

示例

更改描边颜色

HTML

html
<p>Text with stroke</p>
<input type="color" value="#ff0000" />

CSS

css
p {
  margin: 0;
  font-size: 4em;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #ff0000; /* Can be changed in the live sample */
}

结果

规范

规范
兼容性标准
# the-webkit-text-stroke-color

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅