无法让列表项排列起来
我正在一个项目中使用最新版本的 Twitter Bootstrap。我有常规的锚点样式为按钮,旁边是无序列表中的表单提交按钮。
然而,由于某种原因,提交按钮似乎关闭了一两个像素。
有关我所指内容的示例,请参阅 http://jsfiddle.net/Bk97z/1/ 。请注意中间的按钮比其他两个按钮低。
我在 firebug 中检查时没有看到任何异常。我做错了什么,或者这是框架中的错误?
I am using the latest version of Twitter Bootstrap on a project. I have regular anchors styled as buttons, alongside form submit buttons in an unordered list.
However, for some reason, the submit button seems to off by a pixel or two.
See http://jsfiddle.net/Bk97z/1/ for an example of what I am referring to. Note how the middle button is lower than the other two.
I couldn't see anything out of the ordinary when inspecting in firebug. Am I doing something wrong, or is this a bug in the framework?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
display: inline-block
代替,并添加vertical-align: top
。http://jsfiddle.net/thirtydot/Bk97z/5/
Use
display: inline-block
instead, and addvertical-align: top
.http://jsfiddle.net/thirtydot/Bk97z/5/