animate-css-grid
animate-css-grid copied to clipboard
Doesn't work with display: contents
Amazing lib, but given a simple layout like...
.grid
.item
.wrap
p helo
p belo
.item
.wrap
p helo
p belo
...and CSS like...
.grid {
display: grid
}
.item {
display: contents
}
... the animations will no longer work. They do, if the .item
s don't have display: contents
on the them.
Would it be possible to make it work with display: contents
? 🥺