My website is http://www.redflux.com - according to http://www.w3.org I am CSS and HTML validated. Because of this I'm not sure where I went wrong, or what I need to do to correct my problem.
In Internet Explorer my background image shows up at the bottom where I intended for it to be displayed, however in Firefox it shows maybe the bottom quarter of an inch, and coming out from the top.
here is the small amount of code for the page:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>redFLUX - breathing again</title>
<meta http-equiv="Content-Type" content="text/css/html; charset=iso-8859-1">
<style type="text/css">
body {
background-color:rgb(255,255,255);
background-image:url('http://www.redflux.com/test/images/bg2.jpg');
background-attachment:scroll;
background-repeat:no-repeat;
background-position:bottom left;
margin:0px;
}
</style>
</head>
<body>
</body>
</html>
Any suggestions as to where I may have gone wrong or why Firefox hates me?
|