我有一个网站布局,包括4个编目。
<div class="global">
<div class="content">
</div>
<div class="top">
</div>
<div class="footer">
</div>
</div>
采用以下方式:
div.top{
position:fixed;
top:0px;
width:100%;
height:28px;
background-color:rgb(55,55,55);
border-bottom:1px solid black;
}
采用以下方式:
div.footer{
position:fixed;
float:right;
bottom:0px;
left:87.5%;
border:1px solid:black;
border-bottom:0;
}
以及
div.content{
position:absolute;
bottom:0;
top:28px;
width:100%;
background:transparent;
margin:auto;
padding:0;
}
我所面对的问题是内容分散的问题,我希望它直接从上到下,继续走到下页的其余部分,然而,它却从上页的底线上走过,尽管如此,我还是把很多人放在首位。 现在,当我用x子为顶级的大小时,我就能够采用百分数,这样,用只 c子做这项工作的最佳方式。
http://www.andysinventions.info/test/rel=“nofollow” http://www.andysinventions.info/test/。 问题可在称为“论坛”的表格中看到。
tl;dr 我怎么能够阻止我干 the越过页数边界?