Ensuring consistent height for a wrapper across all browsers is proving to be a challenge.
Methods such as using min-height and setting height to 100% have been attempted, but unfortunately, results are not as intended. So how can this issue be resolved?
Different browsers render the wrapper's height differently, leading to inconsistencies in display:
Below is a snippet of the CSS used:
body
{
background: #99CCFF;
margin: 20px 0;
padding: 0;
width: 100%;
}
#wrapper
{
position: relative;
margin:-20px auto;
width:auto;
height:450px;
background-image: url('../images/bg.jpg');
background-repeat: repeat;
}