请问我是在表格标题下面放的横线,为什么会显示在标题上面了

来源:5-5 使用thead、tbody、tfoot定义表格

FlyingAnt

2020-05-07 09:48

<body>

    <h3>成绩汇总</h3>

    <table border="1">

          <caption>三年二班成绩汇总表</caption>

          <hr>

    <thead>

        <tr>

            <th>科目</th>

            <th>分数</th>

        </tr>

    </thead>

http://img4.mukewang.com/5eb368b80001814a07960550.jpg

写回答 关注

1回答

  • weixin_慕仙0575493
    2020-05-07 14:52:09

    hr标签这么使用是报错的,需要放到td标签中使用

    <tr >

                <td  colspan="2"><hr /></td>

    </tr>



初识HTML(5)+CSS(3)-升级版

HTML(5)+CSS(3)基础教程8小时带领大家步步深入学习标签用法和意义

1225309 学习 · 18230 问题

查看课程

相似问题