I have created this scalable vector graphic.
<svg width="150" height="90" style="stroke: black;">
<rect width="40" height="90" style="fill:white;"></rect>
<polygon points="40,0 40,90 150,90 100,45 150,0" style="fill:blue;"/>
</svg>
I am aiming for the left hand side but the result returns the right hand side.
As you can see the vertical edges have wider strokes than the horizontal. Is this a defect of svg? Is there a way a can mitigate it to achieve a more consistent stroke.
svg{overflow:visible}
– enxaneta