2D Transforms
In this chapter you will learn about the 2d transform methods:- translate()
- rotate()
- scale()
- skew()
- matrix()
Example
<!DOCTYPE html><html>
<head>
<style>
div
{
width:200px;
height:100px;
background-color:yellow;
/* Rotate div */
transform:rotate(30deg);
-ms-transform:rotate(30deg); /* IE 9 */0
-webkit-transform:rotate(30deg); /* Safari and Chrome */
}
</style>
</head>
<body>
<div>Hello</div>
</body>
</html>
No comments: