我正在嘗試將頁腳添加到我的網站,但文字不斷移動。使用嵌套divs的頁腳
<div id="footer">
<div id="footerchild">
<a href=".html">1</a>
</div>
<div id="footerchildone">
<a href=".html">2</a>
</div>
<div id="footerchildtwo">
<a href=".html">3</a>
</div>
<div id="footerchildthree">
<a href=".html">4</a>
</div>
</div>
和CSS
#footer {
margin-left: 100px;
background: #812;
box-shadow: 1px 2px 40px 1px #444;
border: 1px solid black;
width: 1040px;
height: 300px;
position: absolute;
}
#footerchildone {
float: right;
margin-right: 500px;
margin-top: -22px;
}
#footerchildtwo {
float: right;
margin-right: 350px;
margin-top: -22px;
}
#footerchildthree {
float:right;
margin-top: -22px;
margin-right: -250px;
}
我想每一列與特定距離centrated,但是當我例如childthree移動,第二個孩子吧如下。它不應該是這樣,因爲我給他們每個人一個單獨的股利。問題是什麼?
他們相對相對定位,沒有CSS屬性那裏指示他們分開行爲,你應該使用位置:絕對如果你想他們無視對方 – Ayyash
我試過位置:絕對,但它沒有工作。你是否認爲每個孩子? –
是的約翰尼,他們都應該絕對定位,把它想象成樂高部分,也就是說如果你真的希望他們固定在位,但讓我告訴你,它是非常不尋常的在網絡中固定部件,他們應該流動,以防萬一你在未來改變內容,他們應該適應沒有太多的麻煩 – Ayyash