CSS3 text rotation for IE, Firefox, Safari


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. /*For Webkit*/
  2. -webkit-transform: rotate(-90deg);
  3.  
  4. /*For Firefox*/
  5. -moz-transform: rotate(-90deg);
  6.  
  7. /*For IE*/
  8. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);

URL: http://m.snook.ca/archives/html_and_css/css-text-rotation

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.