我的 CSS 部分
html {
background-image:url('Images/Site.jpg');
background-repeat:no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#webform {
background-color: #FFFFFF;
padding: 20px;
position: absolute;
right: 7.5%;
top: 40%;
}
我的html部分
<html>
<body>
<div id="webform" >
<form>bla bla bla </form>
</div>
</body>
</html>
我的网站在这里
我想将我的表单固定在它已经被调用的图像中(在“我如何帮助你”的空间下)?我怎么能这样做?