Man ... that's really weird.
Why don't you add the image to the div instead?
Code:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
* {
margin:0px;
padding:0px;
}
div {
background:url('http://www.dis-play.net/dev/test/img/newsDivider.gif') no-repeat left top;
height:100px;
width:306px;
}
div.first {
background: none;
}
</style>
</head>
<body>
<div class="first">text</div>
<div>text</div>
</body>
</html>
Bookmarks