Skip to content

Instantly share code, notes, and snippets.

@simevidas
Created August 18, 2021 09:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simevidas/fce9e7a3f07df62b9d95c73637027d36 to your computer and use it in GitHub Desktop.
Save simevidas/fce9e7a3f07df62b9d95c73637027d36 to your computer and use it in GitHub Desktop.
body > table:first-of-type > tbody > tr:last-child {
animation: 0s fade-out 3s both;
}
@keyframes fade-out {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment