I’m trying to creating a animation, and in this animation I’m setting a display:none
, but not it working in mozilla firefox:( while working good in chrome
tested with -moz- keyword also
@keyframes edit-page-close {
0% {
display: block !important;
top: 15vh;
}
100% {
top: -70vh;
display: none;
}
}