Facebook登录按钮悬停框

Facebook Login Button Hover Box

本文关键字:悬停 按钮 登录 Facebook      更新时间:2023-09-26

如何创建一个悬停在页面右下角的带有Facebook登录按钮的框?

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 */
}