I'm having issues getting my background image to show when I set the body direction to RTL. Can anyone help shed some light on this issue? Here's my sample code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style type=text/css>
div {
background: url(http://hawtaction.com/gray-kangaroo.jpg) top center repeat scroll;
height: 138px;
overflow: auto;
}
</style>
</head>
<body dir="rtl">
<div>header</div>
</body>
</html>
