tor-browser

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

input-scrollable-region-001-ref.html (476B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Basic User Interface Reference File</title>
      4 <link rel="author" title="Boaz Sender, Ali Juma, Robert Ma">
      5 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
      6 <style>
      7 input {
      8  font-family: Ahem;
      9  width: 100px;
     10  margin: 0px;
     11  border: 1px solid black;
     12  height: 30px;
     13  padding: 0px 10px;
     14  font-size: 18px;
     15  box-sizing: border-box;
     16  line-height: 1;
     17 }
     18 
     19 </style>
     20 <body>
     21  <input type="text" value="foo">
     22 </body>