我对 c有以下问题,并想知道,是否有办法通过确定绝对高值来解决这一问题。 我的法典如下:
<style type="text/css" media="screen">
html { height:100%; }
body { background: black; height:100%; }
#menud {
position:absolute;
padding:1em;
height:300px;
background-color:#eaeaea;
width:184px;
}
#menue {
position:absolute;
margin-top:300px;
padding:1em;
height:900px;
width:184px;
background-color:red;
}
#data {
position:absolute;
margin-top:0px;
margin-left: 184px;
width:630px;
height:600px;
border-left:1px solid #dedede;
border-right:1px solid #dedede;
}
#ad {
position:absolute;
padding:1em;
margin-top:0px;
margin-left:814px;
width:186px;
background-color:red;
height:800px;
}
#content {
width:1000px;
background-color:white;
height:100%;
}
#info {
margin-top:0px;
width:1000px;
}
</style>
<html>
<body>
<div id= content >
<div id= info >
<div id= menua >test</div>
<div id= menub >test</div>
<div id= data >test</div>
<div id= ad >test</div>
</div>
</div>
</body>
</html>
我将高地财产设定为100%,但这并不涵盖整个背景白人,因为人们期望这样做。 在这方面的任何帮助都值得赞赏。
Thanx。