tor-browser

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

table-anonymous-text-indent-ref.xht (493B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3 <head>
      4     <style><![CDATA[
      5     #target { text-indent: 20px; display: table; }
      6     #target > * { display: table-cell; border: 1px solid black; }
      7     ]]></style>
      8   </head>
      9 <body>
     10   <p>There should be 20px text-indent in the table below.</p>
     11   <div id="target">
     12     <div>First cell</div>
     13     Second cell (no element on purpose)
     14   </div>
     15 </body>
     16 </html>