2016-05-15 33 views
-2

如何使用Facebook登錄按鈕創建懸停在頁面右下方的框?Facebook登錄按鈕懸停框

+1

什麼這不是一個教程服務補。當您遇到真正的代碼問題時,您需要自己完成基本知識,並在此提問 – charlietfl

回答

0

HTML - 把這個任何地方你的文檔,你需要

<div id='bottom-right-corner'></div> 

CSS

#bottom-right-corner { 
    position: fixed; /* Pin to the window */ 
    z-index: 9999; /* Keep on top of all other content */ 
    bottom: 0px; /* Keep the bottom on the bottom of the page */ 
    right: 20px; /* Keep the right just away from the right edge */ 
}