所以我的問題是我有一個position:fixed
的頁腳,我有一個div封裝了一切叫做邊界的東西。通過邊界,我設置了邊距,右邊和左邊爲200px
,這對右側頁腳有效。footer with position:fixed not respnding to margin-right
CSS的前沿和頁腳樣式:
#frontier
{
margin-right:200px;
margin-left:200px;
}
.footer
{
background-color: #000000;
position:fixed;
bottom:0;
width:100%;
height:100px; /* Height of the footer */
opacity: 0.7;
text-align: center;
-webkit-box-shadow: -6px -8px 6px -6px #999;
-moz-box-shadow: -6px -8px 6px -6px #999;
box-shadow: -6px -8px 6px -6px #999;
}
我試着提出了一些東西,但我仍然不能得到頁腳迴應。我覺得這將成爲我添加固定職位的任何問題。任何解決方案三江源
HTML
<nav class='footer' onload='startTime()'>
<h1 id='hours'></h>
<h1> :</h1>
<h1 id='minutes'></h1>
<h1> :</h1>
<h1 id='seconds'></h1>
</nav>
什麼是HTML?可以創建片段?是的。保證金不會影響你給父母div的固定股利。 – ketan
固定位置將元素附加到文檔,而不是父元素。因此,您的固定div將被定位爲相對於'
'標籤,而不是您的'#frontier' div。但是,您需要共享HTML以查看您的問題。 –我已經添加了使用導航的HTML,這是否重要? – user3676224