Skip to content

Commit b9ed31b

Browse files
maeldebonadampage
andauthored
grid and table properties practice: Fix misplaced greater than symbol in code sample (pull #3194)
In two code snippets, there were '>' symbols for closing tags that were out of place. --------- Co-authored-by: Adam Page <[email protected]>
1 parent b747169 commit b9ed31b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

content/practices/grid-and-table-properties/grid-and-table-properties-practice.html

+3-4
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,7 @@ <h2>Using <code>aria-rowcount</code> and <code>aria-rowindex</code></h2>
115115
aria-rowcount tells assistive technologies the actual size of the grid
116116
is 463 rows even though only 4 rows are present in the markup.
117117
--&gt;
118-
&lt;table role=&quot;grid&quot; aria-rowcount=&quot;463&quot;&gt;
119-
aria-label=&quot;Student roster for history 101&quot;
118+
&lt;table role=&quot;grid&quot; aria-rowcount=&quot;463&quot; aria-label=&quot;Student roster for history 101&quot;&gt;
120119
&lt;thead&gt;
121120
&lt;tr aria-rowindex=&quot;1&quot;&gt;
122121
&lt;th&gt;Last Name&lt;/th&gt;
@@ -237,8 +236,8 @@ <h3>Using <code>aria-colindex</code> When Column Indices Are Not Contiguous</h3>
237236
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.
238237
Columns 3 through 9 are not visible so are not in the DOM.
239238
</p>
240-
<pre><code>&lt;table role=&quot;grid&quot; aria-rowcount=&quot;463&quot; aria-colcount=&quot;13&quot;&gt;
241-
aria-label=&quot;Student grades for history 101&quot;
239+
<pre><code>&lt;table role=&quot;grid&quot; aria-rowcount=&quot;463&quot; aria-colcount=&quot;13&quot;
240+
aria-label=&quot;Student grades for history 101&quot;&gt;
242241
&lt;!--
243242
aria-rowcount and aria-colcount tell assistive technologies
244243
the actual size of the grid is 463 rows by 13 columns,

0 commit comments

Comments
 (0)