How to have text in Vertical in PHP ??
I need text to be displayed in vertical style in Table Td
text
it should print vertical or i need it to rotate ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That does not have anything to do with PHP.
Just use the proper CSS properties
http://www.w3.org/TR/2001/WD-css3-text-20010517/#PrimaryTextAdvanceDirection
EDIT: sorry, I thought this was cross-browser, but it looks like it only works in IE
You can use
-webkit-transform: rotate(-90deg);or-moz-transform: rotate(-90deg);for cross-browser compatibility.