我有奇怪的错误!我从twitter bootstrap组件页面逐行使用代码下拉列表,我没有得到相同的结果.
这是我下拉的样子.
这是我下拉的样子.
我没有覆盖任何引导css.我甚至删除所有样式表,并使用按钮,我仍然得到相同的结果.
PS:我正在使用rails will-paginate-bootstrap plugin ..我认为有所有必要的引导文件
<div class="btn-group"> <a class="btn btn-primary" href="/user/profile/test_user"> <i class="icon-user icon-white"></i> test_user </a> <a class="btn btn-primary dropdown-toggle" data-toggle="dropdown"> <span class="caret"></span> </a> <ul class="dropdown-menu"> </ul> </div>
解决方法
我确定你没有使用HTML5 doctype(<!DOCTYPE html>).
Bootstrap makes use of certain HTML elements and CSS properties that require the use of the HTML5 doctype. Include it at the beginning of all your projects.