Published at
Updated at
Reading time
1min
This post is part of my Today I learned series in which I share all my web development learnings.

Today I came across the caniuse.com entry for vector-effect: non-scaling-stroke. Using vector-effect you can control if transformation such as scale should be applied to the stroke width, too. If you define vector-effect="non-scaling-stroke" you can guarantee that the stroke width stays the same no matter which transformations are applied. This functionality can be useful when you're building interactive SVG animations.

Learn more about it by playing with the demo below. You can change the scale value and find out that the stroke width scales on the x and y axis, too. Change vector-effect to non-scaling-stroke and see that the stroke width stays the same. 💪

Read more about vector-effect on MDN. Have fun and happy scaling!

Was this TIL post helpful?
Yes? Cool! You might want to check out Web Weekly for more quick learnings. The last edition went out 1 days ago.
Stefan standing in the park in front of a green background

About Stefan Judis

Frontend nerd with over ten years of experience, freelance dev, "Today I Learned" blogger, conference speaker, and Open Source maintainer.

Related Topics

Related Articles