在线文档教程
SVG
属性 | Attributes

stroke

stroke

stroke属性定义给定图形元素上轮廓的颜色。该stroke属性的默认值是none。

用法说明

分类呈现属性
<paint>,context-fill,context-stroke
动画
规范性文件SVG 1.1(第二版)

例子

带stroke的SVG线

示例1:使用笔画绘制绿直线。

<svg height="50" width="300"> <path stroke="green" d="M5 20 1215 0" /> </svg>

示例2:使用描边绘制带蓝色边框的黑色圆圈。

​​<svg height="100" width="100"> <circle cx="50" cy="50" r="40" stroke="blue" stroke-width="2" fill="black" /> </svg>

运用 context-stroke

有关使用非标准和限制context-stroke(和context-fill)值的信息,请参阅该-moz-context-properties属性的文档。

元素

The following elements can use the stroke attribute

  • Shape elements »

  • Text content elements »