<style>
<style>
SVG 元素允许样式表直接嵌入到 SVG 内容中。
注意: SVG 的 style
元素拥有与 HTML 中相应元素相同的属性(请参阅 HTML 的 <style>
元素)。
使用语境
分类 | None |
---|---|
允许内容 | 任何元素或字符数据 |
属性
DOM 接口
此元素实现了 SVGStyleElement
接口。
示例
html
<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
<style>
circle {
fill: gold;
stroke: maroon;
stroke-width: 2px;
}
</style>
<circle cx="5" cy="5" r="4" />
</svg>
规范
规范 |
---|
Scalable Vector Graphics (SVG) 2 # StyleElement |
浏览器兼容性
加载中…