问答详情
源自:5-5 使用thead、tbody、tfoot定义表格

仅供参考.

https://img1.sycdn.imooc.com/661e85f40001e5c307970803.jpg代码参考图

提问者:慕心上人3042358 2024-04-16 22:07

个回答

  • 陈浩民666
    3天前

    <body>

    <h3>成绩表</h3>

    <hr>

    <table border="1">

        <thead>

            <tr>

                <th>科目</th>

                <th>分数</th>

            </tr>

        </thead>

        <tbody>

            <tr>

                <th>语文</th>

                <th>99</th>

            </tr>

            <tr>

                <th>数学</th>

                <th>60</th>

            </tr>

            <tr>

                <th>总分</th>

                <th>159</th>

            </tr>

        </tbody>

    </table>

    </body>


  • weixin_慕先生7338451
    2024-05-04 18:18:59

    <table border="2">