所以我按照 [http://css-tricks.com/perfect-full-page-background-image/][1] 上的教程进行操作,但没有任何显示!背景是白色的!
这是我的代码:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Home</title>
<style type="css/text">
html {
background: url(images/black-carbon-sheet.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style>
</head>
<body>
</body>
</html>
请帮忙!谢谢!