Why don’t my SVG images scale using the CSS “width” property?

前端 未结 6 892
感情败类
感情败类 2020-12-08 13:10

I\'m building a portfolio website.

HTML Code

6条回答
  •  -上瘾入骨i
    2020-12-08 13:41

    The transform CSS property lets you rotate, scale, skew, or translate an element.

    So you can easily use the transform: scale(2.5); option to scale 2.5 times for example.

提交回复
热议问题