Is html deprecated?

前端 未结 7 858
清酒与你
清酒与你 2021-01-01 12:45

i\'m looking at the W3Schools demo of using the element to align columns:

相关标签:
7条回答
  • 2021-01-01 13:19

    Try

    <!doctype html>
    <html>
      <head>
        <title>Table</title>
        <style>
          table.foo td:nth-of-type(2) {
            font-style: italic;
          }
        </style>
      </head>
      <body>
        <table class="foo">
          <thead>
            <tr> <th>first</th> <th>second</th> </tr>
          </thead>
          <tbody>
            <tr> <td>bar</td> <td>baz</td> </tr>
            <tr> <td>bim</td> <td>buh</td> </tr>
          </tbody>
        </table>
      </body>
    <html>
    

    Which renders as:

    enter image description here

    0 讨论(0)
提交回复
热议问题