Få styr på tabellerne
Jeg har følgende kode.Hvordan får jeg footer til at ligge nede under content.
<style type="text/css">
#search
{
position: absolute;
width: 100%;
height: 100px;
z-index: 1;
visibility: visible;
top: 10;
background-color: #000080
}
#content
{
position: relative;
width: 100%;
height: auto;
z-index: 2;
visibility: visible;
top: 100;
background-color: #008000
}
#footer
{
position: relative;
width: 100%;
height: 50px;
z-index: 3;
visibility: visible;
background-color: #cecece
}
</style>
<body>
<div id="content">
body
</div>
<div id="footer">
footer
</div>
<div id="search">
søgning
</div>
</body>