Сообщение от 1Dmitry
|
Как прижать блок к низу документа?
|
Да хоть бы так...
<!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: 100px;
}
#footer_tab {
clear: both;
}
footer {
margin-top: -100px;;
background-color: red;
}
</style>
<script type="text/javascript">
</script>
</head>
<body>
<html>
<body>
<section id="catalog">
<div id='footer_tab'></div>
</section>
<footer></footer>
</body>
</html>