Friday 29 June 2012

How To Rotate Element Using CSS3


Copy And Paste . . . . Enjoy
<html>
<style>
#d1
{
background:red;
height:300;
width:300;
float:left;
overflow:hidden;
-webkit-transform:rotate(7deg);
}
</style>
<body>
<div  id="d1" >
Kamal Vaid
</div>
</body>
</html>

1 comment: