I am a little confused on how to get a repeating image with html and css. Here I have this code:
<html>
<head>
<title>Test</title>
<link rel="stylesheet" href="style.css" media="screen" />
</head>
<body>
<div id="top_background"></div>
</body>
</html>
and then in style.css:
/* Reset CSS */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, img, ul, li, fieldset, form, label { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; }
ol, ul { list-style: none; }
:focus { outline: 0; }
/* Content */
#top_background { background: url(images/header.png) repeat-x; }
But when I load the file it's just a blank web page. Taking out the 'repeat-x' doesn't change anything. I am fairly new to html and css, so I could be doing something completely wrong. Thanks!
