JSP编程,图片和文字的结合,求答案
用HTML语句写的页面,需要在页面上加上图片,可是在把现有的图片加上以后,在IE中打开,缩小窗口,滚动条只能控制文字移动,但是控制不了背景图片,这个问题怎么解决???急求答案,谢谢!
BODY {background-image: url("image/background2.jpg");
background-position: top;
background-repeat: no-repeat;
background-attachment: fixed;
}
<body>
<form method="post" action="register"><br><br>
<center>注册用户信息(注意:用户名和密码不得为空)</center>
<table align="center">
<tr>
<td>UserName:</td>
<td><input type="text" name="UserName" /></td>
</tr>
<tr>
<td>password:</td>
<td><input type="Password" name="Password" /></td>
</tr>
</table>
</form>
</body>
</html>