Norse
Norse

Reputation: 5757

CSS Vertical and horizontal align a span inside of a div?

Please look at this jsfiddle: http://jsfiddle.net/xMAKq/20/

How could I center the left column text to be centered like this:

enter image description here

Upvotes: 8

Views: 25733

Answers (3)

You would like to use text-align: center and vertical-align: middle css properties.

See example

Upvotes: 6

frozenkoi
frozenkoi

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

James
James

Reputation: 97

add text-align center... see http://jsfiddle.net/jEKsK/1/

Upvotes: -1

Related Questions