最适合网络开发者的网站
图。初学者课程

尿素

SVG <line>


SVG Line - <line>

The <line> element is used to create a line:

抱歉,您的浏览器不支持内联 SVG。

以下是 SVG 代码:

例子

<svg height="210" width="500">
  <line x1="0" y1="0" x2="200" y2="200" style="stroke:rgb(255,0,0);stroke-width:2" />
</svg>
亲自尝试 »

代码解释:

  • The x1 attribute defines the start of the line on the x-axis
  • The y1 attribute defines the start of the line on the y-axis
  • The x2 attribute defines the end of the line on the x-axis
  • The y2 attribute defines the end of the line on the y-axis