我的頁腳和頁面內容有很多問題,並且正在嘗試找到正確的方法來完成此操作。我的頁腳位於頁面底部,但是當我添加內容時,它會溢出容器,請幫助我。頁面不會隨內容擴展
CSS:
#container {
width: 75%;
height:100%;
margin:0 auto;
background-color:black;
margin-top:10px;
margin-bottom:10px;
padding:10px;
opacity:0.8;
#content {
width:100%;
}
footer {
text-align: center;
clear: both;
color: #B05510;
width: 75%;
height: 115px;
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
}
<body>
<div id='container'>
<?php
include 'navfoot/navbar.php'
?>
<div id='content'>
<div id='paragraph'>
<p>Eventually our website will be advanced enough for us to have a news feed! But until then we suck!</p>
</div>
</div>
<?php
include 'navfoot/footer.php'
?>
</div>
我不使用ID,我使用的是頁腳標籤,我可以對它進行設計。 – Crikit
您的頁腳元素是絕對定位的,我也不確定您是否輸入了錯字,但'#container'沒有關閉。} – Huangism
如果正確使用了頁腳,則不需要ID ['。 @Crikit可以發佈html嗎? – Aibrean