text-transform rotate 45 degrees code example
Example: html css tilt text
div.a {
width: 150px;
height: 80px;
background-color: yellow;
-ms-transform: rotate(20deg); /* IE 9 */
transform: rotate(20deg);
}
<h2>transform: rotate(20deg):</h2>
<div class="a">Hello World!</div>
<br>