svg pattern - test 2
by Leo
HTML
<svg preserveAspectRatio="xMinYMin slice" pointer-events="none" viewBox="0 0 100 100" style="position: absolute; z-index: 31; left: 0px; top: 0px; width: 400px; height: 400px;">
<defs>
<pattern id="lineFill" patternUnits="userSpaceOnUse" height="20" width="20" patternTransform="scale(1)" >
<!-- -->
<rect fill-opacity="0" stroke="#000000" stroke-width="0.1" width="20" height="20"/>
<path vector-effect="non-scaling-stroke" d="M-10 20 L20 -10 M0 30 L30 0" stroke="rgba(0,0,0,1)" stroke-width = "5"/>
</pattern>
</defs>
<path vector-effect="non-scaling-stroke" fill="url(#lineFill)" d="M50 0L100 50L50 100L0 50z"/>
</svg>