да, я с вами уже согласен, уже понял откуда берется скрол для вот на вашем примере
<!DOCTYPE html>
<html>
<head>
<!--
<script src="http://code.jquery.com/jquery-latest.js"></script>
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
* {
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
}
#catalog {
min-height: 100%;
background-color: blue;
}
footer,
#footer_tab {
height: 5px;
}
#footer_tab {
clear: both;
}
footer {
margin-top: -5px;;
background-color: red;
}
nav{
width: 960px;
height: 80px;
margin: 0 auto;
}
</style>
<script type="text/javascript">
</script>
</head>
<body>
<html>
<body>
<nav></nav>
<section id="catalog">
<div id='footer_tab'></div>
</section>
<footer></footer>
</body>
</html>
получается, он опускается в низ еще на 80 пикселей, и-за меню, как это можно исправить?