I have this: <li>+</li> and I'm trying to centre the text. For horizontal centering I am using line-height. How can I do the vertical centering with CSS?
Here is a demo:
|
I have this: Here is a demo: |
|||
|
Looks like you figured out the more complicated part first, CSS makes it very easy to do this. |
|||
|
|
|
|||
|
|
|
I think you're confusing horizontal and vertical. You have the vertical working, for horizontal, just use:
|
|||
|
|
|
Simply add
Here's a working fiddle. |
|||
|
|
|
The simplest answer would be |
|||
|
|
You have those backwards. Vertical centering would be handled by line-height. You can center them horizontally by using |
|||
|
|
|
You could use some
Note: this does change the shape slightly. Example: http://jsfiddle.net/d7pXt/7/ |
|||
|
|
text-align: centergets it pretty close for me – simshaun Dec 2 '11 at 18:43