|
|
|
|
|
by jnbiche
3805 days ago
|
|
If you use proper semantic HTML, ARIA attributes are rarely needed. It's a good idea to validate nonetheless, but there's no point in writing: <button role="button">Sign in</button>
or <h1 role="heading">Heading</h1>
I can think of only a handful of aria attributes that would be helpful if you use proper HTML, such as `search`, maybe `toolbar` and a few others.But it's good to validate the markup regardless, to be sure. |
|