I saw this in a css file:
@-webkit-keyframes loading-spinner-anim {
0% { opacity: 1}
100% {opacity: 0}
}
@keyframes loading-spinner-anim {
0% { opacity: 1}
100% {opacity: 0}
}
what do these selectors mean?
@keyframes it's not a class or id selector.
loading-spinner-anim - the space means it's a child element of the first selector. But it's not a class or id selector.