fluid layout in Netscape 4... crashing!

liunx

Guest
hi,
I'm trying to use a fluid layout to center my pages. It works fine on all browsers EXCEPT for Netscape 4.7 which not only does not display the pages correctly but crashes all together when trying to open the pages. Unfortunately, my office uses Netscape 4 for most machines (we're in the stone age over here), so I really need to fix this.

Here's the code I'm using:

<style type="text/css" media="screen">
body {
margin:20px 0px; padding:0px; /* Need to set body margin and padding to get consistency between browsers. */
text-align:center; /* Hack for IE5/Win */
}

div.left {
position: absolute;
top: 0px;
left: 10px;
width: 200px;
height: 432px;
}

div.top {
position: absolute;
top: 0px;
left: 200px;
width: 580px;
height: 150px;
}

div.main {
position: absolute;
top: 150px;
left: 200px;
width: 580px;
height: 282px;
}
div.container {
position: relative;
margin: 0 auto;
width: 780px;
height: 432px;
text-align: left;
}

</style>

Any suggestions? thanks in advance!!!
:rolleyes: :rolleyes:You can not ask stone-age equipment to work with modern technologies. I always give NN4.* unstyled content.
Easier to upgrade your office browsers. Firebird is available for most platforms and system requirements are moderate.Thank you! I'll see if I can find some Javascript to get rid of CSS for Netscape 4+No need for javascript.
@import does it.
 
Back
Top