JSFiddle - React, Tailwind, and code Playground

by Neeraj Yadav

HTML

<div>Laddooooo</div>

CSS

div {
  animation-name: fadeInBorder;
  animation-duration: 3s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}

@keyframes fadeInBorder {
  from {
    outline: 0;
  }
  to {
    outline: 1px solid grey;
  }
}