我一直在玩Bootstrap 3 的预览,并且遇到了“词缀插件”的问题,它允许固定位置的浮动条。
请在这里找到一个小提琴来展示我的烦恼。基本上,右侧按钮确实浮动,但是从网格系统继承的宽度和偏移样式在position: fixed
应用时似乎消失了。
这是我的代码:
<div class='container'>
<div class='row'>
<div class='col-span-8'>
<legend>Lorem</legend>
<div>[Large amounts of text]</div>
</div>
<div class='col-span-4 well' data-spy='affix' data-offset-top='50'>
<div class='btn btn-large btn-danger col-span-12'>This is fixed</div>
</div>
</div>
</div>
我究竟做错了什么?(我知道 Bootstrap 3 仍在积极开发中,但我希望有人对此有所了解。)