2013-10-04 174 views
19

我在我的網頁底部添加固定按鈕時遇到了一些麻煩。用像素測試了不同的數字,但該按鈕並未顯示在右側的頁面下方。如何將固定按鈕添加到頁面的右下方

HTML

<a href="#head"><img src="upbutton.png" id="fixedbutton"></a> 

CSS

.fixedbutton { 
    position: fixed; 
    bottom: 560px; 
    right: 1000px; 
} 
+6

你應該使用'#fixedbutton'作爲選擇器。 – 2013-10-04 18:24:38

回答

36

你指定在你的CSS(一類).fixedbutton並指定元素本身的id

改變你的CSS爲以下,這將選擇id fixedbutton

#fixedbutton { 
    position: fixed; 
    bottom: 0px; 
    right: 0px; 
} 

這裏有一個jsFiddle禮貌JoshC

+2

http://jsfiddle.net/tWpkf/ –

+0

我實際上將它命名爲td#fixedbutton,所以現在它出現了。但是按鈕並沒有對齊到我想要的位置。 –

+0

那麼,你想要在哪裏? – chopper

相關問題