Css基本樣式綜合設計:表格的製作的詳細介紹

來源:互聯網
上載者:User
這篇文章主要為大家深度剖析Css基本樣式綜合設計:表格的製作的詳細介紹的相關資料,具有一定的參考價值,感興趣的小夥伴們可以參考一下

<table id="tb">    <tr>        <th>姓名</th>        <th>年齡</th>        <th>性別</th>    </tr>    <tr>        <td>小王</td>        <td>20</td>        <td>男</td>    </tr>    <tr class="alt">        <td>小王</td>        <td>20</td>        <td>男</td>    </tr>    <tr>        <td>小王</td>        <td>20</td>        <td>男</td>    </tr>    <tr class="alt">        <td>小王</td>        <td>20</td>        <td>男</td>    </tr></table>     #tb{    border-collapse: collapse;    width: 500px;}#tb td,#tb th{    border: 1px solid bisque;    padding: 5px;}#tb th{    text-align: left;    background-color: aqua;    color: #ffffff;}#tb tr.alt td{    color: black;    background-color: aquamarine;}
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.