Friday, 23 August 2013

Draw vertical text with CSS and cross-browser

Introduction:

Here i will explain how to Draw vertical text with CSS and cross-browser.

Example:

.rotate {

/* Safari */
-webkit-transform: rotate(-90deg);

/* Firefox */
-moz-transform: rotate(-90deg);

/* IE */
-ms-transform: rotate(-90deg);

/* Opera */
-o-transform: rotate(-90deg);

/* Internet Explorer */
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);

}

No comments:

Post a Comment