I coded a site that has a height of say 3740px with white background.
Works great in IE8, and FF3.
But when looking on IE6 it is messed up and long and i need to do max-height 3150px.
How or what can I put in that will say like if* IE6.0 use max-height code, and how can I make it over-ride the 3740px?
THanks
I cant figure that part out
Here's what I tried.. but still no avail
Code: Select all
<link href="../styles.css" rel="stylesheet" type="text/css" />
<style type="text/css">
.centerimages {
padding-left: 150px;
}
.con {
height:3740px;
}
</style>
<script type="text/javascript">
<![if IE 6]>
<style type="text/css">
.con {
max-height: 3250px;
}
</style>
<![endif]-->