Forum Moderators: not2easy
[edited by: not2easy at 7:27 pm (utc) on Aug 16, 2015]
[edit reason] Charter/TOS [/edit]
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style>
a {
-webkit-transform: rotate(-3deg);
display:block;
width:150px;
height:100px;
background:red;
-webkit-transition: .3s;
}
a:hover {
-webkit-transform: scale(1.3);
}
</style>
</head>
<body>
<p><a href="http://www.google.com">test</a></p>
</body>
</html>