Но вот как их теперь отобразить
#block {
position: absolute;
animation: pop 2s linear;
}
@keyframes pop {
0% {
bottom: -100px;
}
10% {
bottom: 0px;
}
100% {
bottom: -100px;
}
}
#parent {
display: grid;
grid-template-rows: repeat(auto-fit, minmax(250px, 1fr));
}