tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

animate-font-size-with-margin-override.html (453B)


      1 <link rel="help" href="https://drafts.csswg.org/css-animations">
      2 <link rel="help" href="https://bugs.webkit.org/show_bug.cgi?id=284527">
      3 <link rel="match" href="animate-font-size-with-margin-override-ref.html">
      4 <style>
      5 @keyframes anim {
      6    from, to { font-size: 30px; }
      7 }
      8 h2 {
      9    margin: 0;
     10    background-color: lightblue;
     11    animation: anim both;
     12 }
     13 div { border: 2px solid green; }
     14 </style>
     15 
     16 <div>
     17 <h2>This should not have any margins.</h2>
     18 </div>