Originally Posted by
cu11
Im am trying to achieve it in JS/HTML/CSS
And yes that is how they are placed ravells but the corners causes issues..ill look into js setting images with 1/2 offsets
Something like this should work with CSS:
Code:
<div style="background: url(tile.png) repeat scroll 0% 0% transparent; height: 600px; width: 600px;">
<div style="background: url(tile.png) repeat scroll 0% 0% transparent; height: 750px; width: 750px; position: relative; top: -75px; left: -150px;">
</div>
</div>
You can figure how to clean up the edge overlaps, etc.
Here: http://testbed.cartocopia.com/test.html
edit - looks like you need to trim 1 row off your image to get rid of the white line...?
-Rob A>