Click here to Skip to main content
15,887,746 members
Articles / Web Development / HTML
Tip/Trick

Making Text Upside down using CSS

Rate me:
Please Sign up or sign in to vote.
4.95/5 (28 votes)
25 Nov 2011CPOL 126.6K   20   30
Making Text Upside down using CSS

Description


After seeing this message by PompeyBoy3, I wanted the same in CSS, so I have tried & am now posting here.

Code


XML
<html>
<head>
<title>Text Up side down</title>
<style type="text/css">
.txtUpsideDown 
{
	filter:  progid:DXImageTransform.Microsoft.BasicImage(rotation=2);  /* IE6,IE7 */
	ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; /* IE8 */
	-moz-transform: rotate(-180deg);  /* FF3.5+ */
	-o-transform: rotate(-180deg);  /* Opera 10.5 */
	-webkit-transform: rotate(-180deg);  /* Safari 3.1+, Chrome */
	position: absolute; 
}
</style>
</head>
<body>
<div class="txtUpsideDown">Test message</div>
</body>
</html>

Browser Compatibility


I have tested this script in the following Web browsers:

  • Internet Explorer
  • Mozilla Firefox
  • Google Chrome
  • Safari
  • Opera

Reference


http://css3please.com/

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: /*Glad to see I am the inspiration for it. Does that mean I ... Pin
thatraja10-Mar-11 3:32
professionalthatraja10-Mar-11 3:32 
GeneralReason for my vote of 5 nice one, but I have an alternate to... Pin
Prerak Patel8-Mar-11 16:25
professionalPrerak Patel8-Mar-11 16:25 
General????b si ???? Pin
Prerak Patel8-Mar-11 16:23
professionalPrerak Patel8-Mar-11 16:23 
GeneralReason for my vote of 5 Nice one man. But IE9 should it cra... Pin
Venkatesh Mookkan8-Mar-11 15:55
Venkatesh Mookkan8-Mar-11 15:55 
GeneralRe: But I didn't check in IE9 but tested in IE 7 &amp; 8. Welcom... Pin
thatraja10-Mar-11 3:30
professionalthatraja10-Mar-11 3:30 
GeneralReason for my vote of 5 This is Uber! 5* Pin
DrABELL8-Mar-11 15:16
DrABELL8-Mar-11 15:16 
GeneralReason for my vote of 5 Cool Pin
Johnny J.8-Mar-11 9:46
professionalJohnny J.8-Mar-11 9:46 
GeneralReason for my vote of 5 Good to see my name in that way (i t... Pin
TweakBird8-Mar-11 7:28
TweakBird8-Mar-11 7:28 
Reason for my vote of 5
Good to see my name in that way (i tested with my name). Thanks for sharing Raja
Generalʇɐǝɹb sı ʇɐɥʇ Pin
Prerak Patel8-Mar-11 16:24
professionalPrerak Patel8-Mar-11 16:24 
GeneralRe: ʇɐǝɹb sı ʇɐɥʇ Pin
thatraja10-Mar-11 6:02
professionalthatraja10-Mar-11 6:02 
GeneralRe: ʇɐǝɹb sı ʇɐɥʇ Pin
Reelix14-Mar-11 21:39
Reelix14-Mar-11 21:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.