在线文档教程
SVG
属性 | Attributes

stroke-width

stroke-width

该stroke-width属性指定当前对象上轮廓的宽度。它的默认值是1。如果使用<百分比>,则该值表示当前视口的百分比。如果使用值0,则轮廓将不会被绘制。

作为一个表现属性,它也可以直接在CSS样式表中作为属性使用

用法说明

分类呈现属性
<长度> | <百分比| | 继承
动画
规范性文件SVG 1.1(第二版)

例子

SVG

<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">   <circle cx="100" cy="100" r="100" /> </svg> <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">   <circle cx="100" cy="100" r="100" stroke="#ff0" stroke-width="10" /> </svg>

Result

元素

以下元素可以使用该stroke-width属性

  • Shape elements »

  • Text content elements »