Randomblue
Randomblue

Reputation: 116263

List bullet points not centered vertically

Please take a look at this fiddle that contains an unordered list:

<ul>
    <li>Item 1
    <li>Item 2

I use Twitter Bootstrap, and the first button under "Step 1" is over two lines. Notice the bullet point does not align in the center vertically.

How can I fix this?

Upvotes: 2

Views: 4864

Answers (1)

xkeshav
xkeshav

Reputation: 54016

use

li a {  vertical-align:middle; }

DEMO

Upvotes: 7

Related Questions