无法让列表项排列起来

发布于 2025-01-02 21:36:54 字数 284 浏览 0 评论 0原文

我正在一个项目中使用最新版本的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤独岁月 2025-01-09 21:36:54

使用 display: inline-block 代替,并添加 vertical-align: top

http://jsfiddle.net/thirtydot/Bk97z/5/

.view-actions li {
    display: inline-block;
    vertical-align: top;
}

Use display: inline-block instead, and add vertical-align: top.

http://jsfiddle.net/thirtydot/Bk97z/5/

.view-actions li {
    display: inline-block;
    vertical-align: top;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文