我正在尝试加载一个简单的背景图像,但它让我愚蠢地尝试加载它。谁能看到我做错了什么?
HTML
<!DOCTYPE html>
<html>
<head>
<title>TEST</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/normalize.css">
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
CSS
html {
background: url(images/bg.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
背景图像位于 images/bg.png 中的目录中,如上述 css 中所述。