我目前正忙于创建一个简单的网站。
当我尝试创建背景图像时,它只是不会显示。我对普通图像使用了相同的映射,只是为了检查我的映射是否错误。
这是我当前的代码:
<body>
<table>
<!-- multiple <trs><tds><divs></divs></tds></trs> -->
</table>
</body>
我的CSS看起来像这样:
* {
padding:0; margin:0;
}
html, body {
height:100%;
width: 100%;
}
body{
background: transparent url('./img/background.jpg') no-repeat 0 center;
display: inline-block;
}
编辑:
我已将其更改为:
background: transparent url('../img/background.jpg') no-repeat 0 center;
它工作,但是当我再次刷新页面时,它停止工作..