Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是jsfiddle:http: //jsfiddle.net/hhimanshu/sYLRq/
当前的
必填 - 单击“添加到列表”,下拉菜单位于“添加到列表按钮”下方
我在这里做错了什么?
我需要修复什么?
谢谢
这是因为您的 btn-group 的宽度是整个屏幕。你可以给它一个 display:inline-block; 修理:
<div class="btn-group open" style="display:inline-block;">
您应该在 css 中而不是内联中执行此操作。
JSFIDDLE