gpt4 book ai didi

html - 表格和屏幕阅读器

转载 作者:太空宇宙 更新时间:2023-11-04 14:38:01 25 4
gpt4 key购买 nike

我似乎无法让屏幕阅读器阅读简单的表格。我有以下 HTML:

<table alt="Account Information">
<tr>
<th scope='row'>Account Number:</th>
<td>1111 1111 1111</td>
<td>&nbsp&nbsp<td/>
<th scope='row'>Reference Number:</th>
<td>XXXX XXXX XXXX</td>
</tr>
</table>

当屏幕阅读器点击这张 table 时,它说“表格。0 列。0 行。”

我在网上尝试了很多示例,并尝试使用 WCAG2.0 标准作为指导,但它似乎不起作用。

我也尝试过不同的表格布局和结构,但仍然得到相同的结果。

最佳答案

我没有通过屏幕阅读器运行它,但它可能会被您的   抛出。   需要用分号结束。像这样: 。此外,表没有 alt 属性。使用 summary attribute 提供对屏幕阅读器有用的解释相反。

最重要的是,我建议您删除那个空单元格并使用 CSS 腾出更大的空间。

1 - 删除空白行并使用 CSS 提供间隙,如下所示:

HTML

<table summary="Account Information">
<tr>
<th scope="row">Account Number:</th>
<td>1111 1111 1111</td>

<th scope="row">Reference Number:</th>
<td>XXXX XXXX XXXX</td>
</tr>
</table>

CSS

th { padding: 0 10px;  }

2 - ...最重要的是,也许它有点挑剔,所以你可以尝试:

<table summary="Account Information">
<thead>
<tr>
<th scope="col">Account Number Heading</th>
<th scope="col">Account Number</th>
<th scope="col">Reference Number Heading</th>
<th scope="col">Reference Number</th>
</tr>
</thead>

<tbody>
<tr>
<th scope="row">Account Number:</th>
<td>1111 1111 1111</td>

<th scope="row">Reference Number:</th>
<td>XXXX XXXX XXXX</td>
</tr>
</tbody>
</table>

CSS

thead { display: none; }
th { padding: 0 10px; }

3 - ...但理想情况下,表格应该是这样的:

<table summary="Account Information">
<thead>
<tr>
<th scope="col">Account Number</th>
<th scope="col">Reference Number</th>
</tr>
</thead>

<tbody>
<tr>
<td>1111 1111 1111</td>
<td>XXXX XXXX XXXX</td>
</tr>
</tbody>
</table>

CSS

th { padding: 0 10px;  }

关于html - 表格和屏幕阅读器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21586478/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com