style属性可帮助我们使用CSS声明来设置元素的样式。它的工作原理与HTML的style属性非常相似。几乎所有元素都使用此属性。
用法:
style = "<style>"
属性值:style属性接受上面提到的和下面描述的值。
- 风格:样式数据的语法取决于所提供的CSS。
以下示例说明了style属性的用法。
范例1:
HTML
<!DOCTYPE html>
<html>
<body>
<svg viewBox="-10 -5 1220 520"
xmlns="http://www.w3.org/2000/svg">
<defs>
<marker id="geek"
viewBox="0 0 10 10"
refX="1" refY="5"
markerUnits="strokeWidth"
markerWidth="7"
markerHeight="7"
orient="auto">
<path d="M 0 0 L 10 5 L 0 10 z"
fill="green"/>
</marker>
</defs>
<polyline points="20, 20 40, 25 60,
40 80, 120 120, 140 200, 180"
style="fill:none;stroke:green;
stroke-width:3"
marker-end="url(#geek)"/>
</svg>
</body>
</html>
输出:
范例2:
HTML
<!DOCTYPE html>
<html>
<body>
<svg viewbox="0 0 150 60"
xmlns="http://www.w3.org/2000/svg">
<circle cx="12" cy="12" r="10"
style="fill:lightgreen;
stroke:green;
stroke-width:2;"/>
</svg>
</body>
</html>
输出:
相关用法
- SVG font-style属性用法及代码示例
- SVG <style>用法及代码示例
- HTML style属性用法及代码示例
- HTML <style> media属性用法及代码示例
- HTML <style> type属性用法及代码示例
- SVG viewBox属性用法及代码示例
- SVG rx属性用法及代码示例
- SVG width属性用法及代码示例
- SVG opacity属性用法及代码示例
- SVG stroke-width属性用法及代码示例
- SVG stroke属性用法及代码示例
- SVG height属性用法及代码示例
- SVG ry属性用法及代码示例
- SVG fill属性用法及代码示例
- SVG font-size属性用法及代码示例
注:本文由纯净天空筛选整理自thacker_shahid大神的英文原创作品 SVG style Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。