如何给jsp页面添加背景图片?

如题所述

第1个回答  2011-10-14
弄个css样式
.login_top_bg {
background-image: url(login-top-bg.gif);
background-repeat: repeat-x;
}
或者<table background=“login-top-bg.gif”>
第2个回答  推荐于2017-10-01
div{
width:100%;
height:100%;
background-image:url(图片位置);
background-repeat: no-repeat;
background-size: cover;
-webkit-background-size: cover;/* 兼容Webkit内核浏览器如Chrome和Safari */
-o-background-size: cover;/* 兼容Opera */
zoom: 1;
}
第3个回答  2011-10-13
<body style="background:url(e:\\a.jpg)">
</body>追问

不行哦

追答



试试看。。

本回答被网友采纳
第4个回答  2011-10-13
你用dreamweaver编辑器试下就知道了 可以查看代码的 里面
相似回答