Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 HTML 和 CSS,如何在不保持纵横比的情况下更改 SVG 的大小(使用标签<img />获取 svg 文件) ?
<img />
只需添加preserveAspectRatio="none"到<svg>根元素。或者,如果您愿意,可以在链接到 img 时覆盖它,就像在这个示例中一样,通过使用如下链接:
preserveAspectRatio="none"
<svg>
<img src="your.svg#svgView(preserveAspectRatio(none))" />
对于一个实时示例,试试这个并调整浏览器窗口的大小。