tor-browser

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

border-dotted-no-radius.html (1587B)


      1 <!DOCTYPE HTML>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>dotted border with no radius</title>
      6    <style>
      7 .box {
      8  position: relative;
      9  width: 420px;
     10  height: 420px;
     11 }
     12 .mask {
     13  position: absolute;
     14  top: 0px;
     15  left: 0px;
     16 }
     17 
     18 table {
     19  border-collapse: separate;
     20  border-spacing: 10px;
     21  empty-cells: show;
     22 }
     23 td {
     24  border-style: dotted;
     25  border-color: black;
     26  height: 120px;
     27  width: 120px;
     28  box-sizing: border-box;
     29 }
     30 
     31 .A {
     32  /* Rendering with 1px depends on OS due to optimization */
     33  border-width: 0px;
     34 }
     35 .B {
     36  /* Rendering with 2px depends on OS due to optimization */
     37  border-width: 0px;
     38 }
     39 .C {
     40  border-width: 6px;
     41 }
     42 .D {
     43  border-width: 8px;
     44 }
     45 .E {
     46  border-width: 16px;
     47 }
     48 .F {
     49  border-width: 24px;
     50 }
     51 .G {
     52  border-width: 32px;
     53 }
     54 .H {
     55  border-width: 48px;
     56 }
     57 .I {
     58  border-width: 60px;
     59 }
     60    </style>
     61  </head>
     62  <body>
     63    <div class="box">
     64      <table>
     65        <tr><td class="A"></td><td class="B"></td><td class="C"></td></tr>
     66        <tr><td class="D"></td><td class="E"></td><td class="F"></td></tr>
     67        <tr><td class="G"></td><td class="H"></td><td class="I"></td></tr>
     68      </table>
     69      <img class="mask" src="border-dotted-no-radius-filled-mask.png">
     70    </div>
     71    <div class="box">
     72      <table>
     73        <tr><td class="A"></td><td class="B"></td><td class="C"></td></tr>
     74        <tr><td class="D"></td><td class="E"></td><td class="F"></td></tr>
     75        <tr><td class="G"></td><td class="H"></td><td class="I"></td></tr>
     76      </table>
     77      <img class="mask" src="border-dotted-no-radius-unfilled-mask.png">
     78    </div>
     79  </body>
     80 </html>