我试图让内容的 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>