JSFiddle - React, Tailwind, and code Playground
scale(x, y)
by Jennifer Perrin
HTML
<a href="">hover</a>
CSS
body {
padding: 50px;
}
a {
color: #444;
display: block;
font: 48px/1 sans-serif;
margin-bottom: 24px;
text-decoration: none;
text-transform: uppercase;
-webkit-transition: all .25s ease;
-moz-transition: all .25s ease;
-ms-transition: all .25s ease;
-o-transition: all .25s ease;
transition: all .25s ease;
}
a:hover {
-webkit-transform: scale(1, 2);
-moz-transform: scale(1, 2);
-ms-transform: scale(1, 2);
-o-transform: scale(1, 2);
transform: scale(1, 2);
}