我是 html 和 css 的新手,我正在尝试设计一个网站,在每个页面上都有一个固定的横幅和侧边菜单,然后是一个中心框架式环境中的内容。目前我的一切都是流体形式,如下所示:
<body>
<div id="banner">
<?php
include('banner.html');
?>
</div>
<div id="sidemenu">
<?php
include('sidemenu.html')
?>
</div>
<div id="content">
<?php
include ('content.html')
?>
</div>
</body>
作为我的样式 css 代码的一部分,我有:
#banner
{
background-color:#6a2b93;
color:#FFDB00;
text-align:right;
font-family:"Times New Roman", Times, serif;
width:100%;
height:10%;
position:fixed;
}
#sidemenu
{
background-color:#6B2B93;
color:#FFDB00;
text-align:left;
font-family:"Times New Roman", Times, serif;
padding-left:2%;
padding-right:1%;
padding-bottom:5px;
height:90%;
width:20%;
position:fixed;
top:10%;
float:left;
overflow: auto;
}
#content
{
background-color:#FFFFFF;
color:#000000;
text-align:justify;
font-family:="Times New Roman", Times, serif;
margin-right:20px;
margin-left:23%;
padding-right:2.5%;
padding-left:2.5%;
padding-bottom:5px;
height:90%;
width:72%;
position:fixed;
top:10%;
float:left;
overflow:auto;
}
理想情况下,我希望横幅的高度为 3em,但我似乎找不到这样做的方法,同时在侧边菜单和内容上保留自动溢出选项。这可能吗?