0
我想頁眉和頁腳添加到該分開佈置這樣的: pic1添加頁眉頁腳和內容佈局分裂
當我添加以下代碼:
<style type="text/css">
body {
margin:0;
padding:0;
}
div#header{
width:100%;
height:65px;
position:fixed;
z-index:100;
background-color:#F00;
}
div#footer{
width:100%;
height:65px;
position:fixed;
bottom:0;
background-color:#06F;
}
div#content{
background-color:#111;
width:100%;
height:100%;
position:absolute;
}
</style>
<body>
<div id="container">
<div id="header">
<?php include 's/header.php';?>
</div>
<div id="content">
<?php include 'index.html';?>
</div>
<div id="footer">
<?php include 's/footer.php';?>
</div>
</div>
</body>
我有頭和我以分割畫面點擊不頁腳後,才: pic2
什麼是你的問題是什麼呢?請限制在一定的點,並配置了一個正在運行的代碼示例,而不是粘貼你的整個代碼。 – roNn23