tor-browser

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

css-resize.html (412B)


      1 <!DOCTYPE html>
      2 <html>
      3  <!--
      4    resize shouldn't be allowed on the ::placeholder.
      5  -->
      6  <link rel='stylesheet' type='text/css' href='style.css'>
      7  <style>
      8    textarea {
      9      resize: none;
     10    }
     11    textarea::-moz-placeholder,
     12    textarea::placeholder {
     13      resize: both;
     14    }
     15  </style>
     16  <body>
     17    <textarea placeholder='foo'></textarea>
     18    <textarea placeholder='bar'></textarea>
     19  </body>
     20 </html>