我有一个标题,我试图通过图像文件对其应用背景纹理。html、css 和图像文件都在同一个目录中。这是html:
<body>
<div id=header>
<div id=picture>
<img=src=picture.jpeg alt="Profile" align="right" width="180" height="180"/>
</div>
<div id=caption>
<h1>BannerText</h1>
</div>
</div>
</body>
这是外部样式表代码:
#header
{
background= url('texture.png');
width:98%;
}
纹理图像不出现。如果我将它与原始body标签的背景属性一起使用,即
<body background="texture.png">
确实有效。这告诉我这不是 url 的问题,并且所有三个文件都在同一个文件夹中,因此 html 和 css 文件中的相对路径是相同的。为什么纹理图像不显示为标题 div 的背景?