Monday, March 12, 2012

Here’s How To do a Reverse Text with your CSS

How To do a Reverse Text with CSS

With these kind of CSS snippets this will show you how to easily flip your text in three different ways!   This first code flips each letter horizontally making them face towards the left while retaining their original positions and sequence.

Here’s a sample snippet of CSS

CSS
.one   {-webkit-transform:rotateY(180deg);
-moz-transform:rotateY(180deg);
-o-transform:rotateY(180deg);
-ms-transform:rotateY(180deg);
transform:rotateY(180deg);
unicode-bidi:bidi-override;
direction:rtl;}
 
Your can usually check out the whole codes here on – Web Design and Web Development
Via blogfreakz.com

No comments:

Post a Comment