Click to See Complete Forum and Search --> : Image tiling?


Dark Dragon
06-02-2003, 12:29 PM
Okay..I have a page where I have a background yet I want a image to tile in one row on the side of a page...since I cannot apply a CSS to it what can I do?...

Jona
06-02-2003, 01:46 PM
I would put this in the HTML or DHTML forum, actually... But anyways, you could do something like this:


<style type="text/css">
<!--
body {margin-top:0px;margin-left:0px;}
#topDiv {position:relative;
top:0;
left:0;
background-image:url(yourImage.gif);
background-repeat: repeat-x;
//-->
</style>
</head><body>
<div id="topDiv"></div>
</body></html>


Jona