CCS vanskeligheder
Hej eksperter, jeg kan ikke forstå hvorfor mit lille eksempel gør at der kommer en elevator - jeg har sat højden til at være 100% :(<html>
<head>
<style type="text/css">
body
{
margin: 0px;
padding: 0px;
}
div.main
{
margin-left:190px;
background-color: Lime;
height: 100%;
}
div.content
{
float:left;
width:190px;
margin:00;
background-color: White;
height: 100%;
}
.footer
{
clear:both;
width:100%;
color:white;
background-color:gray;
}
</style>
</head>
<body>
<div class="content">Content</div>
<div class="main">Main</div>
<div class="footer">Footer</div>
</body>
</html>
