Mhhh, wie nun groß genug?
Bezogen auf die Page, also immer 100% ???
HTML-Code:
<html>
<head>
<title> 100% DIV </title>
<style type="text/css">
html,body{
background: #FFFFFF;
font-size: 100.01%;
font-family: Verdana, Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
height:100%;
}
#content{
min-height: 100%;
height: auto !important; /* für moderne Browser */
height: 100%; /*für den IE */
width: 300px;
background: #cccccc;
text-align: center;
}
</style>
</head>
<body>
<div id="content">Ich bin das Div</div>
</body>
</html>