pixie/tests/fileformats/svg/dashes.svg

23 lines
922 B
XML
Raw Normal View History

2021-06-29 02:50:09 +00:00
<svg viewBox="0 0 600 200" xmlns="http://www.w3.org/2000/svg">
<rect width="600" height="200" fill="white"/>
2021-05-24 03:29:59 +00:00
<!-- No dashes nor gaps -->
2021-06-29 02:50:09 +00:00
<line x1="0" y1="20" x2="600" y2="20" stroke="black" stroke-width="20" />
2021-05-24 03:29:59 +00:00
<!-- Dashes and gaps of the same size -->
2021-06-29 02:50:09 +00:00
<line x1="0" y1="60" x2="600" y2="60" stroke="black"
stroke-dasharray="80" stroke-width="20" />
2021-05-24 03:29:59 +00:00
<!-- Dashes and gaps of different sizes -->
2021-06-29 02:50:09 +00:00
<line x1="0" y1="100" x2="600" y2="100" stroke="black"
stroke-dasharray="80 20" stroke-width="20" />
2021-05-24 03:29:59 +00:00
<!-- Dashes and gaps of various sizes with an odd number of values -->
2021-06-29 02:50:09 +00:00
<line x1="0" y1="140" x2="600" y2="140" stroke="black"
stroke-dasharray="80 20 40" stroke-width="20" />
2021-05-24 03:29:59 +00:00
<!-- Dashes and gaps of various sizes with an even number of values -->
2021-06-29 02:50:09 +00:00
<line x1="0" y1="180" x2="600" y2="180" stroke="black"
stroke-dasharray="80 20 40 60" stroke-width="20" />
2021-05-24 03:29:59 +00:00
</svg>