Footer content disappears when zooming all the way out in firefox 3.5 but not in IE8. Might anyone know why this might be happening? Below is the code I am using:
CSS
.footer {
background:#2b2b2b;
clear:both;
float:left;
font-size:0.9em;
font-weight:bold;
height:11.5em;
overflow:hidden;
text-align:center;
width:100%;
}
.footer p {
clear:both;
color:#c1c1c1;
padding-top:25px;
width:100%;
}
#footerMenu {
float:left;
left:50%;
list-style-type:none;
margin: 0 auto;
padding-top:30px;
position:relative;
}
#footerMenu li {
float:left;
position:relative;
right:50%;
}
#footerMenu li a {
background: transparent url(_images/vertical.gif) center right no-repeat;
color:#fff;
display:block;
line-height:1.2em;
padding: 0 12px;
text-decoration:none;
width:auto;
}
#footerMenu li a:hover{
text-decoration:underline;
}
Hmm, It looks like FF3 has a formula of about twice as many zoom-ins as zoom-outs.
With this snippet below I can zoom-out 5 times and I can zoom-in 8 times.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>demo</title>
<style type="text/css">
div {
width:8em;
height:8em;
margin:2em auto;
background:lime;
}
</style>
</head>
<body>
<div>zoom me in and out</div>
</body>
</html>