Currently working on a website using only HTML and CSS. I am still learning the ropes in this area. My goal is to create a layout with a header, body, and footer that repeat to fill up the entire page, similar to envato.com. Here is a snippet of the code I have written so far.
CSS:
.blkside {
z-index:99;
background-image: url(/images/blkside.jpg);
background-repeat: repeat-x;
top:0px;
right:85px;
position: absolute;
}
Here is the corresponding HTML:
<div class="blkside"><img src="/images/blkside.jpg"></div>
This represents just one of the divs I am using. Three are set to repeat horizontally, while one repeats vertically. After researching, everything seems correct in the code, but unfortunately, it's not displaying as expected. Any assistance or insight on this matter would be greatly appreciated.