EsT*_*eGe 5 css twitter-bootstrap
我正在使用Twitter引导流体布局.在页面上,我有一个大表单,底部<div class="form-actions">带有保存按钮.我希望这个div始终可见,这样用户就不必总是向下滚动到页面底部.我尝试使用这块CSS:
.fixed {position: fixed !important;}
Run Code Online (Sandbox Code Playgroud)
当表格适合视口时,它可以工作,但当表格太大时会神秘地消失.有人有解决方案吗?
尝试为其中一个top或bottom根据您希望锚定的位置设置一些值.
.fixed {
position: fixed;
bottom:0;
left:0;
}
Run Code Online (Sandbox Code Playgroud)