I have a collage of images that are placed on a page at a specific location, i.e. position: absolute
. Right now, my code looks something like this:
<body>
<div class='im1' style="..."></div>
<div class='im2' style="..."></div>
<div class='im3' style="..."></div>
<div class='im4' style="..."></div>
...
</body>
where style
contains the left:__px
top:__px
(some values). The size of the collage is also variable size. My question is that if I want to create a two column page, i.e. have a sidebar on either the right/left side of the page with the collage on the other side, how would I do that?