我可以指定顶部:111px或底部:0px,但我仍然需要高度是正确的. 100%-111px,根据视口的大小.
似乎没有得到表达式工作coz似乎是解决方案
这是我的css代码:
position: absolute; width: 200px; top: 111px; bottom: 0px;
有什么建议么?
HTML:
<body> <div id="wrapper"> <div id="header">header</div> <div id="content">content</div> </div>
CSS:
html,body { height: 100%; min-height: 100%; margin: 0; padding: 0; } #wrapper { height: 100%; min-height: 100%; } #header { height: 111px; }