tor-browser

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

background-position-important.html (664B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>background-position-x animation overridden by important style</title>
      4 <style>
      5 @keyframes holdBackgroundPosition {
      6  from,to { background-position-x: 50%; }
      7 }
      8 #test {
      9  height: 100px;
     10  width: 100px;
     11  background-repeat: no-repeat;
     12  background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAMAAADzN3VRAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF/wAAAAAAQaMSAwAAABJJREFUeNpiYBgFo2AwAIAAAwACigABtnCV2AAAAABJRU5ErkJggg==); /* a 25x25 px red box */
     13  background-position-x: 50% !important;
     14  animation: holdBackgroundPosition 100s infinite;
     15 }
     16 </style>
     17 <div id="test" class="reftest-opaque-layer"></div>