+ 6
I want to rotate my polyline... How can i do that??
I am preparing a simple code from it.
3 Answers
+ 5
CSS:
polyline{
transform:rotate(30deg);
}
+ 3
https://code.sololearn.com/WN98d8bKefeC/?ref=app
CSS would more than likely be your best bet to use with a polyline, plus you can bend the polyline, change thickness, lengthen and shrink...
+ 2
Hi Night Star
For SVG elements you can use Transform rotate.
<rect x="20" y="20" width="40" height="40"
style="fill: #3333cc"
transform="rotate(15)"
/>