<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 |
瀏覽器相容性
載入中…