我目前正在开发一个 HTML5 和 CSS 项目,并且在让容器正确显示时遇到问题。
我想要的是顶部的标题栏,一个包含其他 2 个 div 的包装器,然后是底部的页脚,它始终位于窗口底部或内容的底部,以更下方为准。
这是一个片段:
html, body
{
padding: 0;
margin: 0;
}
#wrapper
{
position: absolute;
background-color: purple;
height: 100%;
width: 100%;
margin-top: 0px;
}
header
{
position: absolute;
width: 100%;
height: 80px;
background-color: black;
color: white;
}
#articleContainer
{
background-color: blue;
width: 75%;
margin-left: auto;
margin-right: auto;
height: auto;
margin-top: 80px;
}
#articleContent
{
width: 70%;
background-color: yellow;
float: left;
}
#articleSideBar
{
position: relative;
width: 28%;
background-color: green;
float: right;
margin-left: 2px;
margin-right: 2px;
display: inline;
margin-top: 0px;
float: right;
height: auto;
}
<html>
<head>
<title>index</title>
<link href="ArticleStyleSheet.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="wrapper">
<header>
Header
</header>
<div id="articleContainer">
Article Container
<div id="articleContent">
The quick brown fox jumped over the lazy dogs back. All good men must come to the aid of the party
</div>
<div id="articleSidebar">
Article Sidebar
</div>
</div>
</div>
</body>
</html>
目前 articleContainer 只是有多少行的高度。我想要的是填充屏幕其余部分的 formContainer,我尝试添加 height: 100%; 属性,但随后感觉表单容器超过了屏幕大小。即出现一个垂直滚动条,它与标题的高度大致相同。如何在没有滚动条的情况下让 formContainer 填充可用的屏幕空间。但是,如果内容大于表单容器,则应展开以填充额外的空间。
感谢您的任何帮助,您可以提供。