|
|
|
|
|
by rhencke
3061 days ago
|
|
That's not true, though. Semantic tags may make it easier to be accessible, but they are absolutely _not_ required. WAI-ARIA defines the mechanisms to make existing webpages accessible, and they do not require using tags for their semantic meaning - quite the opposite. You use role attributes for this. For example: <div role="button">Click me.</div>
is perfectly accessible, and will be interpreted as a button, though semantically it's a div. |
|