语法
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>-
描边的颜色。
正式定义
正式语法
-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: red; /* Can be changed in the live sample */
}
结果
规范
| 规范 |
|---|
| 兼容性 # the-webkit-text-stroke-color |
浏览器兼容性
加载中…