Forum Moderators: open
#ImgLeft
{
WIDTH: 100px;
HEIGHT: 200px;
BACKGROUND: url(TheImage.gif) no-repeat left top;
}
#ImgRight
{
WIDTH: 100px;
HEIGHT: 200px;
BACKGROUND: url(TheImage.gif) no-repeat right top;
}
<img id="ImgLeft" src="Blank.gif>
<img id="ImgRight" src="Blank.gif>
But you'll need a transparent "Blank.gif" to fill out the foreground.
<full member>
CONGRATULATIONS!
I made Full Member a week or so ago. It took a few days and then the prizes and "secret passwords" started showing up.
</full member>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Untitled</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
</head>
<body>
<div style="position:relative;height:80px;">
<div style="position:absolute;clip:rect(0 100px 60px 0)">
<img src="your_200x60_Image.gif" alt="" />
</div>
</div>
<div style="position:relative;height:80px;">
<div style="position:absolute;clip:rect(0 200px 60px 100px)">
<img src="your_200x60_Image.gif" alt="" />
</div>
</div>
<div style="position:relative;height:80px;">
<div style="position:absolute;clip:rect(0 100px 60px 0)">
<img src="your_200x60_Image.gif" alt="" />
</div>
<div style="position:absolute;clip:rect(0 200px 60px 100px)">
<img src="your_200x60_Image.gif" alt="" />
</div>
</div>
</body>
</html>