SVG Stroke 属性
优质
小牛编辑
135浏览
2023-12-01
SVG Stroke 属性
SVG提供了一个范围广泛stroke 属性。在本章中,我们将看看下面:
- stroke
- stroke-width
- stroke-linecap
- stroke-dasharray
所有stroke属性,可应用于任何种类的线条,文字和元素就像一个圆的轮廓。
SVG stroke 属性
Stroke属性定义一条线,文本或元素轮廓颜色:
下面是SVG代码:
<svg xmlns="http://www.w3.org/2000/svg" version="1.1"><g fill="none">
<path stroke="red" d="M5 20 l215 0" />
<path stroke="blue" d="M5 40 l215 0" />
<path stroke="black" d="M5 60 l215 0" />
</g>
</svg>
对于Opera用户:
对于Opera用户:
对于Opera用户:
对于Opera用户:查看SVG文件(右键单击SVG图形预览源)。