我正在尝试在其正文中为我的页面提供完整的背景,但没有任何效果,而且我得到的输出是垃圾。
我已经尝试了我能想到的一切,但没有什么是正确的。你能告诉我我的错误在哪里吗?(.jpg 在正确的位置)
<html>
<head>
<style type="text/css">
body {
height: 100px;
width: 100px;
background-image:url(background.jpg) repeat fixed 100% 100%;
}
#container {
width: 979px;
height: 100%;
margin: 0 auto;
background-color: blue;
}
</style>
<title> Baisbook </title>
</head>
<body>
<div id="container">
<p> Just saying Hi! </p>
</div>
<p>This is a Test</p>
</body>
</html>