Skip to content

Find what you need, instantly

Search components, ARIA roles & attributes, and WCAG criteria.

All attributes

aria-colcount

Integer

Declares 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>
Associated roles
Example
aria-colcount="…"
<div role="grid" aria-colcount="12">…</div>