ページの本文に完全な背景を表示しようとしていますが、何も機能せず、得られる出力はごみです。
考えられることはすべて試しましたが、何もうまくいきません。私の間違いがどこにあるのか教えてください。(.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>