Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

css

alignment

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

like image 632
Norse Avatar asked May 11 '12 23:05

Norse


2 Answers

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

See example

like image 158
Community Driven Business Avatar answered Sep 20 '22 02:09

Community Driven Business


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/

like image 32
frozenkoi Avatar answered Sep 17 '22 02:09

frozenkoi