aria-colcount
IntegerDeclares the total number of columns in a table, grid, or treegrid when not all of them are present in the DOM, as with horizontally virtualized data. It's set on the table element and paired with aria-colindex on cells. A value of -1 means the total column count is unknown.
Value
Any integer.
Used on
<table>
Example
aria-colcount="…"
<div role="grid" aria-colcount="12">…</div>References