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>