Flip or Reverse Text Using CSS

As title says, we can Flip Text Upside Down or Reverse Text using CSS only(Rather than some jQuery Plugin or JavaScript). The CSS is completely Cross-browser compatible(Yeah, even older IEs), check out the CSS below.

Flipping Text Upside Down

1
2
3
4
5
6
-webkit-transform:rotate(-180deg);
-moz-transform:rotate(-180deg); 
-o-transform:rotate(-180deg); 
transform:rotate(-180deg);
ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);

Reversing Text

1
2
direction: rtl; 
unicode-bidi: bidi-override;

Live Demo

Here is a live demo of implementation of above snippets:

Flipping Text

Reversing Text

Alternatively, you can see them here.

Tags: ,

4 Responses to “Flip or Reverse Text Using CSS”

  1. breaking news February 11, 2013 at 6:38 pm #

    Fantastic goods from you, man. I have take into account your stuff previous to and you are simply too magnificent. I really like what you have obtained right here, certainly like what you are stating and the best way through which you are saying it. You are making it entertaining and you still take care of to stay it wise. I can’t wait to read much more from you. This is actually a wonderful website.

  2. Pretty! This has been an extremely wonderful article.
    Thanks for providing these details.

Trackbacks/Pingbacks

  1. Elegant D » Flip or Reverse Text Using CSS | PriteshGupta.com - September 11, 2011

    [...] Source: CSS – Google Blog Search [...]

  2. xhtml css templates – Flip or Reverse Text Using CSS | PriteshGupta.com | XHTML CSS - Style sheet and html programming tutorial and guides - September 11, 2011

    [...] from: Flip or Reverse Text Using CSS | PriteshGupta.com Share and [...]

Leave a Reply