SVG代表可缩放矢量图形。它可以像HTML画布一样用于制作图形和动画。
SVG <style>元素允许将样式表直接嵌入SVG内容中。
用法:
<style> Styling Content </style>
属性:
- type:要使用的样式表的类型。
- media:此属性定义样式应用的媒体。
- title:此属性表示样式表的标题,可用于在备用样式表之间切换。
- Global Attributes:使用了一些全局属性,例如核心属性和样式属性等。
范例1:
<!DOCTYPE html>
<html>
<body>
<svg viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<style>
circle {
fill:green;
}
</style>
<circle cx="5" cy="5" r="4" />
</svg>
</body>
</html>
输出:
范例2:
<!DOCTYPE html>
<html>
<body>
<svg viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<style>
rect {
fill:green;
stroke:black;
stroke-width:.1px;
}
</style>
<rect height="5" width='5'/>
</svg>
</body>
</html>
输出:
支持的浏览器:此SVG元素支持以下浏览器:
- Chrome
- Edge
- Firefox
- Safari
- IE浏览器
- Opera
相关用法
- SVG <marker>用法及代码示例
- SVG <desc>用法及代码示例
- SVG <a>用法及代码示例
- SVG <clipPath>用法及代码示例
- SVG <title>用法及代码示例
- SVG <animateMotion>用法及代码示例
- SVG <animate>用法及代码示例
- SVG <g>用法及代码示例
- SVG <textPath>用法及代码示例
- SVG <tspan>用法及代码示例
- SVG <use>用法及代码示例
- SVG <symbol>用法及代码示例
- SVG <foreignObject>用法及代码示例
- SVG <hatch>用法及代码示例
- SVG <set>用法及代码示例
- SVG <feFlood>用法及代码示例
注:本文由纯净天空筛选整理自taran910大神的英文原创作品 SVG <style> Element。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。