I'm re-learning CSS and I was wondering how I would do something like this:
li:nth-child(n) {
display: block;
animation: animate 500ms ease-in-out forwards;
animation-delay: calc(n * 200ms);
}
Where n is the current li element and the delay is equal to n * 200ms