Skip to content

Find what you need, instantly

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

All attributes

aria-colspan

Integer

Indicates how many columns a cell spans in a grid or treegrid, mirroring the native `colspan` attribute for ARIA-based tables. It helps assistive technologies convey the cell's extent across columns. You only need it on custom grids built without native table elements, which already expose spanning.

Value
Any integer.
Used on
<td colspan><th colspan>
Example
aria-colspan="…"
<div role="gridcell" aria-colspan="2">Merged</div>