Movatterモバイル変換


[0]ホーム

URL:


  1. 面向开发者的 Web 技术
  2. CSS:层叠样式表
  3. CSS 参考
  4. Properties
  5. -webkit-text-stroke-color

此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in EnglishAlways switch to English

-webkit-text-stroke-color

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2017年4月⁩.

CSS 属性-webkit-text-stroke-color 指定了文本字符的笔触颜色。若未设置此属性,则使用color 属性的值。

css
/* 颜色值 */-webkit-text-stroke-color: red;-webkit-text-stroke-color: #e08ab4;-webkit-text-stroke-color: rgb(200, 100, 0);/* 全局值 */-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
适用元素所有元素
是否是继承属性
计算值颜色计算值
动画类型acolor

形式语法

-webkit-text-stroke-color =
<color>
此语法反映了基于Compatibility 的最新标准。并非所有浏览器都已实现全部内容。有关支持信息,请参阅浏览器兼容性

示例

改变笔触颜色

HTML

html
<p>带笔触的文本</p><input type="color" value="#ff0000" />

CSS

css
p {  margin: 0;  font-size: 4em;  -webkit-text-stroke-width: 3px;  -webkit-text-stroke-color: #ff0000; /* 可在运行实例中被修改 */}
const colorPicker = document.querySelector("input");colorPicker.addEventListener("change", (evt) => {  document.querySelector("p").style.webkitTextStrokeColor = evt.target.value;});

结果

规范

Specification
Compatibility
# the-webkit-text-stroke-color

浏览器兼容性

参见

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp