Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

grid and table properties practice: Fix misplaced greater than symbol in code sample #3194

Merged
merged 2 commits into from
Mar 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ <h2>Using <code>aria-rowcount</code> and <code>aria-rowindex</code></h2>
aria-rowcount tells assistive technologies the actual size of the grid
is 463 rows even though only 4 rows are present in the markup.
--&gt;
&lt;table role=&quot;grid&quot; aria-rowcount=&quot;463&quot;&gt;
aria-label=&quot;Student roster for history 101&quot;
&lt;table role=&quot;grid&quot; aria-rowcount=&quot;463&quot; aria-label=&quot;Student roster for history 101&quot;&gt;
&lt;thead&gt;
&lt;tr aria-rowindex=&quot;1&quot;&gt;
&lt;th&gt;Last Name&lt;/th&gt;
Expand Down Expand Up @@ -237,8 +236,8 @@ <h3>Using <code>aria-colindex</code> When Column Indices Are Not Contiguous</h3>
In this example, the first two columns with the student name are shown, but the score columns have been scrolled to show columns 10 through 13.
Columns 3 through 9 are not visible so are not in the DOM.
</p>
<pre><code>&lt;table role=&quot;grid&quot; aria-rowcount=&quot;463&quot; aria-colcount=&quot;13&quot;&gt;
aria-label=&quot;Student grades for history 101&quot;
<pre><code>&lt;table role=&quot;grid&quot; aria-rowcount=&quot;463&quot; aria-colcount=&quot;13&quot;
aria-label=&quot;Student grades for history 101&quot;&gt;
&lt;!--
aria-rowcount and aria-colcount tell assistive technologies
the actual size of the grid is 463 rows by 13 columns,
Expand Down
Loading