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.
我在解决方案中有一个 SVG 文件,我有一个母版页,我想将该 SVG 作为背景图像。我尝试过:
html { background-image: url("../Images/MainBackground.svg"); }
但它不起作用;SVG 根本没有出现。
有谁知道为什么?
提前致谢。
恕我直言,您应该在“body”而不是“html”上设置背景。
顺便说一句:这不适用于 Internet Explorer。
编辑:
在你的 CSS 上试试这个
background-image: url(your-file.svg); -o-background-size: 100% 100%; -webkit-background-size: 100% 100%; -moz-background-size: 100% 100%;