blob: b1c3b967f927cbf6ba958c57a50450934cdb687a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<svg xmlns="http://www.w3.org/2000/svg"
width="300" height="300" viewBox="0 0 300 300" >
<style>
line { stroke: black; stroke-width: 5px; }
</style>
<line x1="50px" y1="50px" x2="250px" y2="50px"
style="stroke-dasharray: 5px, 10px">
</line>
<line x1="50px" y1="100px" x2="250px" y2="100px"
style="stroke-dasharray: 5px, 10px; stroke-dashoffset: 5px;">
</line>
<line x1="50px" y1="150px" x2="250px" y2="150px"
style="stroke-dasharray: 5px; stroke-dashoffset: 5px;">
</line>
</svg>
|