JSFiddle - React, Tailwind, and code Playground
by Manju06
HTML
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Beschreibung">
<title>boilerplate</title>
</head>
<body>
<a href="#">link</a>
</body>
</html>
CSS
a {
margin-left: 200px;
margin-top: 200px;
border: 1px solid red;
width: 100px;
display: block;
}
a:hover {
-webkit-transform: scale(.8);
-ms-transform: scale(.8);
transform: scale(.8);
transition: all 0.5s linear;
}