<第>对于列标题

发布于 2024-12-08 13:10:01 字数 401 浏览 0 评论 0原文

使用 标签作为列标题是否合适/语义。即 PriceQty 应该位于这样的表格的 标签中吗?

+-------+--------+---------+--------+
|       | apples | oranges | lemons |
|-------+--------+---------+--------|
| Price | 100    | 200     | 300    |
|-------+--------+---------+--------|
| Qty   | 10     | 10      | 10     |
+-------+--------+---------+--------+

Is it suitable/semantic to use <th> tag for column headers. I.e. should Price, and Qty be in <th> tags for table like this?

+-------+--------+---------+--------+
|       | apples | oranges | lemons |
|-------+--------+---------+--------|
| Price | 100    | 200     | 300    |
|-------+--------+---------+--------|
| Qty   | 10     | 10      | 10     |
+-------+--------+---------+--------+

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

八巷 2024-12-15 13:10:01

使用标签作为列标题是否合适/语义。

是的

即价格和数量应该位于这样的表格的标签中吗?

这些是行标题,但仍然是的。

<table>
    <tbody>
        <tr>
            <td>
            <td scope="col">apples <!-- both heading and data so use td with scope -->
        <!-- etc etc -->
            <th scope="row">Price

Is it suitable/semantic to use tag for column headers.

Yes

I.e. should Price, and Qty be in tags for table like this?

Those are row headings, but still, yes.

<table>
    <tbody>
        <tr>
            <td>
            <td scope="col">apples <!-- both heading and data so use td with scope -->
        <!-- etc etc -->
            <th scope="row">Price
甜妞爱困 2024-12-15 13:10:01

是的,您可以执行此操作

<TABLE border="1">
<CAPTION><EM>A test table with merged cells</EM></CAPTION>
<TR><TH rowspan="2"><TH colspan="2">Average
    <TH rowspan="2">Red<BR>eyes
<TR><TH>height<TH>weight
<TR><TH>Males<TD>1.9<TD>0.003<TD>40%
<TR><TH>Females<TD>1.7<TD>0.002<TD>43%
</TABLE>

并查看链接 http://www.w3.org /TR/html4/struct/tables.html

Yes,u can do this

<TABLE border="1">
<CAPTION><EM>A test table with merged cells</EM></CAPTION>
<TR><TH rowspan="2"><TH colspan="2">Average
    <TH rowspan="2">Red<BR>eyes
<TR><TH>height<TH>weight
<TR><TH>Males<TD>1.9<TD>0.003<TD>40%
<TR><TH>Females<TD>1.7<TD>0.002<TD>43%
</TABLE>

and see the link http://www.w3.org/TR/html4/struct/tables.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文