Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Vertical Texte Center

Status
Not open for further replies.

patweb

Programmer
Apr 17, 2003
174
BE
Via this site I found the solution to show texte vertical, e.g. as a column head. I wonder how to center my vertical texte ? This .css is not working to center the data.

"<style>"
"<!--"
".verticaltext {"
"writing-mode: tb-rl;"
"filter: flipv flipv;"
"text-align: center;"
"}"
"-->"
"</style>"

any id, thanks.
 
what your align does is to center the text horizontally.

to align it vertically, you need a block element (e.g. Table Cell - <td>) and add the following css style to it:
Code:
vertical-align : middle;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top