今更だけど、高さ100%
javascriptでなんやかんやするのもあり、cssをさわるもありですね
基本的な構造で、
<html>
<body>
<div id=”height100″></div>
</body>
</html>
だったとして、
cssはこんな感じで↓
html,body {
height: 100%;
}
#height100 {
height: 100%;
min-height: 100%;
}
body > #height100 {
height: auto;
}



