为什么以下动画在Chrome中有效但在Firefox中无效?
HTML:
<button>Loading</button>
CSS:
button {
width: 70px;
text-align: left;
}
button:after {
content: '';
animation: dots 1s infinite;
}
@keyframes dots {
0% { content: ''; }
25% { content: '.'; }
50% { content: '..'; }
75% { content: '...'; }
}