亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        使用thead、tfoot、 tbody制作一個(gè)表格

        字號(hào):


            還有人很變態(tài)地用這三個(gè)標(biāo)簽做出標(biāo)題能跟隨表格,或者tbody固定高度,走出自動(dòng)出現(xiàn)滾動(dòng)條的功能。
            代碼如下:
            <title>thead、tfoot 以及 tbody標(biāo)簽</title>
            <table border=1>
            <thead>
            <tr>
            <th>科目</th>
            <th>分?jǐn)?shù)</th>
            </tr>
            </thead>
            <tbody>
            <tr>
            <td>語文</td>
            <td>99</td>
            </tr>
            <tr>
            <td>數(shù)學(xué)</td>
            <td>60</td>
            </tr>
            </tbody>
            <tfoot>
            <tr>
            <td>總分</td>
            <td>159</td>
            </tr>
            </tfoot>
            </table>