SVG是否具有固有的px大小?


9

我将插图文件中的某些图像另存为SVG,用作网站的背景图像。我知道您可以以px为单位设置图像大小,但是文件中是否设置了任何固有的px大小?

Answers:


4

在文本编辑器中打开SVG文件,亲自看看!

<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="60px" height="60px" viewBox="0 0 60 60" enable-background="new 0 0 60 60" xml:space="preserve">
<line fill="none" stroke="#FFFFFF" stroke-width="12" x1="1.1" y1="1.2" x2="58.8" y2="58.8"/>
</svg>

相关属性可在SVG标签中找到:


6

是。

当您从Illustrator中保存SVG,调整大小,保存另一个SVG并以HTML输出两者时,它们将以不同的大小显示,具体取决于您保存的大小。

在画板上设置这些值应该很容易,但是我总是只设置一个css属性(显然只能在Web上使用)

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.