<body>
<form id="form1" runat="server">
<div class="page">
<div class="header">
....
</div>
<div class="main"></div>
....
</form>
</body>
和css文件:
body
{
background: #b6b7bc;
font-size: .80em;
font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
margin: 0px;
padding: 0px;
color: #696969;
}
.page
{
width: 960px;
background-color: #fff;
margin: 0px auto 0px auto;
border: 1px solid #496077;
border-radius: 10px;-moz-border-radius: 10px;-webkit-border-radius: 10px;border: 2px solid white;padding: 1px 0;
box-shadow: 5px 3px 5px #ccc;
height: auto;
overflow: hidden;
}
.header
{
position: relative;
margin: 0px;
padding: 0px;
background-color: white;
background-image: url(~/img/056.JPG);// I want it displays as a image logo
width: 100%;
height:200px;
}
即使我放了行,我也尝试了很多方法来设置标题的图像(徽标):
background-image: url(~/img/056.JPG);
但056.JPG
图像没有出现在标题中(只是背景颜色)。
然后我这样做:
<div class="header">
<img style="border:0px" src="img/056.JPG" height="200px" width="100%" alt=""/>
</div>
图像出现了,但这不是我想要的方式。因为,当我以上述方式设置标题的图像徽标时,我在--> <div>
内放置了一些新标签,该标签将显示在标题下方(我希望它显示在标题内)。<div header>
new <div>
求助,我的标题div有什么错误,为什么背景图片不显示???
更新:
按照建议,我刚刚编辑了网址,我使用Banner2009_new.jpg
而不是056.JPG
:
background-image: url("/website/pic/Banner2009_new.jpg");
然后,我双击路径图像进行检查:
它仍然有文件:Banner2009_new.jpg
在pic
文件夹网页中,但是当我检查时,似乎没有 Banner2009_new.jpg
这是我的网站文件夹: