我想创建一个固定位置按钮,该按钮将在我的网站上运行,无论是在左侧还是作为弹出式面板(请参阅http://uservoice.com/fullservice以获取屏幕底部的一个很酷的弹出按钮)。单击该按钮将启动我公司用于联系和反馈信息的弹出窗口。
这些类型的按钮是否有基本的示例CSS?我是一个JS人,并且创建了弹出窗口没有任何问题,但我没有CSS技能来获取按钮来激活我的窗口。
答案 0 :(得分:9)
css将是:
.button {
position: fixed;
bottom: 0;
right: 0; //or left: 0; depending on where you want it to be.
}
html为:
<div class='button'> button text here </div>
答案 1 :(得分:6)
尝试这样的事情:
#feedback-button {
position: fixed;
bottom: 0px;
right: 0px;
}