2016-05-15 113 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 */ 
}