Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-animations/animate-font-size-with-margin-override.html - WPT Dashboard Interop Dashboard
<link rel="match" href="animate-font-size-with-margin-override-ref.html">
<style>
@keyframes anim {
from, to { font-size: 30px; }
}
h2 {
margin: 0;
background-color: lightblue;
animation: anim both;
}
div { border: 2px solid green; }
</style>
<div>
<h2>This should not have any margins.</h2>
</div>