tor-browser

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

content-on-pseudo-element-at-beginning.html (240B)


      1 <!DOCTYPE html>
      2 <html>
      3  <style>
      4  @keyframes anim {
      5    from { content: 'content'; }
      6    to { content: ''; }
      7  }
      8  #target::before {
      9    content: 'initial';
     10    animation: anim 100s paused;
     11  }
     12  </style>
     13  <div id='target'></div>
     14 </html>