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 はまったく表示されません。
誰かが理由を知っていますか?
前もって感謝します。
私見では、「html」ではなく「body」に背景を設定する必要があります。
ところで: Internet Explorer では動作しません。
編集:
CSSでこれを試してください
background-image: url(your-file.svg); -o-background-size: 100% 100%; -webkit-background-size: 100% 100%; -moz-background-size: 100% 100%;