--- title: color slug: Web/SVG/Attribute/color tags: - SVG - SVG属性 translation_of: Web/SVG/Attribute/color ---
color
属性用来为 {{ SVGAttr("fill") }} 属性、{{ SVGAttr("stroke") }} 属性、{{ SvgAttr("stop-color") }} 属性、{{ SVGAttr("flood-color") }} 属性和 {{ SVGAttr("lighting-color") }} 属性提供一个潜在的间接值(currentColor
)。
作为一个外观属性,它还可以直接用作CSS样式表的属性。请阅读 {{ cssxref("color","CSS color") }} 以了解更多信息。
类别 | 外观属性 |
---|---|
值 | <color> | inherit |
规范文档 | SVG 1.1 (2nd Edition) |
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg" version="1.1"> <g color="green"> <rect width="50" height="50" fill="currentColor" /> <circle r="25" cx="70" cy="70" stroke="currentColor" fill="none" stroke-width="5" /> </g> </svg>
{{ EmbedLiveSample('Example', '100%', '110') }}
下列元素可以使用color
属性:
{{Compat("svg.attributes.presentation.color")}}