html css 背景图片无法显示

来源:百度知道 编辑:UC知道 时间:2024/05/23 23:59:56
<html>
<title>Air</title>
<head>
<style type="text/css">
body
{
background: #00000 url(./images/bg air.jpg) no-repeat fixed center;
}
</style>
</head>
<body>
</body>
</html>

显示不出来吖 为什麽?
对的

请问你这个html文件是不是和images文件夹同级?
./是代表的html 和 images 在同一个目录下的相对路径.
另你的图片名称 中间有空格,css 不识别, 请改成 bg%20air.jpg %20是空格路径替代符

试着将./images/bg air.jpg改为
../images/bg air.jpg

图片的格式可能不对,或者图片的名称中文或英文

你的图片路径对不对,图片格式对不对