JSFiddle - React, Tailwind, and code Playground
by Pritam Bohra
HTML
<div class="test"></div>
CSS
.test {
width: 100px;
height: 200px;
background-color: #000;
}
.test:hover {
background-color: #555;
cursor: pointer;
}
by Pritam Bohra
<div class="test"></div>
.test {
width: 100px;
height: 200px;
background-color: #000;
}
.test:hover {
background-color: #555;
cursor: pointer;
}