SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>My spending record</title>
    <link href="minimal-table.css" rel="stylesheet" type="text/css">
    <style>
        tbody{
            font-size: 90%;
            font-style: italic;
        }
        tfoot{
            font-weight: bold;
        }
    </style>
  </head>
  <body>
    <h1>My spending record</h1>

      <table>
        <caption>How I chose to spend my money</caption>
          <thead>
            <th>Purchase</th>
            <th>Location</th>
            <th>Date</th>
            <th>Evaluation</th>
            <th>Cost (€)</th>
          </thead>
          <tfoot>
            <td colspan="4">SUM</td>
            <td>118</td>
          </tfoot>
          <tbody>
          <tr>
            <td>Haircut</td>
            <td>Hairdresser</td>
            <td>12/09</td>
            <td>Great idea</td>
            <td>30</td>
          </tr>
          <tr>
            <td>Lasagna</td>
            <td>Restaurant</td>
            <td>12/09</td>
            <td>Regrets</td>
            <td>18</td>
          </tr>
          <tr>
            <td>Shoes</td>
            <td>Shoeshop</td>
            <td>13/09</td>
            <td>Big regrets</td>
            <td>65</td>
          </tr>
          <tr>
            <td>Toothpaste</td>
            <td>Supermarket</td>
            <td>13/09</td>
            <td>Good</td>
            <td>5</td>
          </tr>
          </tbody>
    </table>
    <hr/>
    <h3>嵌入表格</h3>
    <table id="table1">
    <tr>
        <th>title1</th>
        <th>title2</th>
        <th>title3</th>
    </tr>
    <tr>
        <td id="nested">
        <table id="table2">
            <tr>
            <td>cell1</td>
            <td>cell2</td>
            <td>cell3</td>
            </tr>
        </table>
        </td>
        <td>cell2</td>
        <td>cell3</td>
    </tr>
    <tr>
        <td>cell4</td>
        <td>cell5</td>
        <td>cell6</td>
    </tr>
    </table>
    <hr/>
    <h3>scope属性</h3>
    <table>
        <thead>
            <tr>
                <td scope="col">Purchase</td>
                <th scope="col">Location</th>
                <th scope="col">Date</th>
                <th scope="col">Evaluation</th>
                <th scope="col">Cost (€)</th>
            </tr>
        </thead>
        <tbody>
            <tr>
            <th scope="row">Haircut</th>
            <td>Hairdresser</td>
            <td>12/09</td>
            <td>Great idea</td>
            <td>30</td>
            </tr>
        </tbody>
    </table>
    <h3>id和headers属性</h3>
    <table>
        <thead>
        <tr>
            <th id="purchase">Purchase</th>
            <th id="location">Location</th>
            <th id="date">Date</th>
            <th id="evaluation">Evaluation</th>
            <th id="cost">Cost (€)</th>
        </tr>
        </thead>
        <tbody>
        <tr>
        <th id="haircut">Haircut</th>
        <td headers="location haircut">Hairdresser</td>
        <td headers="date haircut">12/09</td>
        <td headers="evaluation haircut">Great idea</td>
        <td headers="cost haircut">30</td>
        </tr>

        ...

        </tbody>
    </table>
  </body>
</html>
html {
  font-family: sans-serif;
}

table {
  border-collapse: collapse;
  border: 2px solid rgb(200,200,200);
  letter-spacing: 1px;
  font-size: 0.8rem;
}

td, th {
  border: 1px solid rgb(190,190,190);
  padding: 10px 20px;
}

th {
  background-color: rgb(235,235,235);
}

td {
  text-align: center;
}

tr:nth-child(even) td {
  background-color: rgb(250,250,250);
}

tr:nth-child(odd) td {
  background-color: rgb(245,245,245);
}

caption {
  padding: 10px;
}