基本的にヘッダーと足の間のページの高さ全体を実行するコンテンツの div を取得しようとしています。私が使用する場合:
#content{ height: 100%; }
div 内にあるコンテンツと同じ高さしかありません。場合によっては、文が 1 つしかない場合でも、div (背景または境界線を含む) を画面の長さだけフッターまで実行したい場合があります75px
。
CSSでこれを簡単に行う方法はありますか?現在私が持っているものは次のとおりです。
<style>
#content {
margin-top: 0px;
height: 800px;
width: 800px;
margin-left: auto;
margin-right: auto;
background-color: #E0E0E0 ;
}
</style>
</head>
<body>
<div id="content">
this is a div! with some centered crap
</div>