JSFiddle - React, Tailwind, and code Playground

by cchana

HTML

<div>

</div>

CSS

div {
    animation: test 1s forwards;
    padding: 10px;
}

@keyframes test {
    0% {
        border: 1px solid red;
    }
    100% {
        border: 1px solid black;
    }
}