Skip to content Skip to sidebar Skip to footer

Plain Text In Vertical Alignment In Html

How to set any plain text in Vertical Alignment in HTML?

Solution 1:

The CSS property vertical-align ist only either for vertical alignment in table cells or for vertical alignment of inline elements to each other.

There is no real vertical centering in CSS, but there way to "work around" it:

http://www.jakpsatweb.cz/css/css-vertical-center-solution.html

More alternatives: http://www.google.com/search?&q=css+vertical+centering

Solution 2:

<divstyle="vertical-align: top;">plain text</div>

Post a Comment for "Plain Text In Vertical Alignment In Html"