JSFiddle - React, Tailwind, and code Playground
HTML
<div></div>
CSS
div {
width: 200px;
height: 200px;
background: orange;
border: 5px solid transparent;
transition: .3s;
}
div:hover {
border-color: green;
}
<div></div>
div {
width: 200px;
height: 200px;
background: orange;
border: 5px solid transparent;
transition: .3s;
}
div:hover {
border-color: green;
}