JSFiddle - React, Tailwind, and code Playground
by moku23
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>prova box</title>
<style>
.box {
width: 200px;
height: 200px;
background-color: #fff;
border: 1px solid #ccc;
transition: box-shadow 0.3s ease-in-out;
}
.box:hover {
box-shadow: 0 0 20px 0 rgba(255, 0, 0, 0.5);
}
</style>
</head>
<body>
<div class="box">
<h2>div con mouseover</h2>
</div>
</body>
</html>