haikuwebkit/LayoutTests/animations/keyframe-em-unit.html

18 lines
192 B
HTML

<style>
div {
font-size: 2em;
animation: div 3s infinite alternate;
}
@keyframes div {
from {
font-size: 3em;
}
to {
font-size: 3em;
}
}
</style>
<div>Hello world!</div>