首页 > 解决方案 > 表格中的 TH 是否允许使用标题?

问题描述

表格中的 TH 是否允许使用标题?我读到他们不是,但我的灯塔审计没有选择他们。

<table>
    <thead>
        <tr>
            <th colspan="2"><h2>The table header</h2></th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>The table body</td>
            <td>with two columns</td>
        </tr>
    </tbody>
</table>

标签: html

解决方案


<!DOCTYPE html>
<html>
<head>
    <title>demo</title>
</head>
<body>
    <table border="2">
        <caption>Yes heading tags are allowed</caption>
        <thead>
            <tr>
                <th><h1>Hello</h1></th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>Hi, How are you...</td>
            </tr>
        </tbody>
    </table>
</body>
</html>

推荐阅读