Reputation: 5887
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?
Upvotes: 2
Views: 267
Reputation: 228152
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;
}
Upvotes: 2