svg背景覆盖整个页面

时间:2014-10-20 18:16:54

标签: css svg background-image

SVG图像如何覆盖整个HTML页面,我可以在100%宽度的情况下垂直滚动它?我试过以下但是即使我声明溢出,我也无法滚动它:滚动身体标签。

    <!DOCTYPE html>
    <html>
      <head>
        <style type="text/css">
          * {
            background: url(home.svg);
            background-repeat: no-repeat;
            background-size: cover;
            overflow: scroll;
          }
        </style>
      </head>
      <body>

      </body>
    </html>

0 个答案:

没有答案