Display Text Upside down using CSS3

Below example will help you to learn how to Display some text Upside down on the webpage using CSS3.

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

ASP.NET MVC 3 Framework

Many people are searching for a BEST book for ASP.NET MVC 3 Frameowrk. I can guarantee you will enjoy reading below book for ASP.NET MVC 3 Framework.


http://www.amazon.com/gp/product/1430234040?ie=UTF8&tag=aspnettelligent-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=1430234040"