Reputation: 5757
Please look at this jsfiddle: http://jsfiddle.net/xMAKq/20/
How could I center the left column text to be centered like this:
Upvotes: 8
Views: 25733
Reputation: 4682
You would like to use text-align: center
and vertical-align: middle
css properties.
See example
Upvotes: 6
Reputation: 3248
You can try with display
and table values (table-row
and table-cell
) and then use vertical-align: middle
, as in http://jsfiddle.net/frozenkoi/xMAKq/22/
Upvotes: 3