Bubbles
0 points · 5 days ago · 0 comments

You do not write the following:<nav aria-label="primary-navigation">   <!-- a list of internal links --> </nav> Do not do that. The value of the aria-label is for humans. Instead, write the following:<nav aria-label="Primary">   <!-- a list of internal links --> </nav> Explanations:Remove the "-navigation" because the <nav> element already has the semantic meaning as the navigation landmark.No code is written there. This means we do not want screen readers or other assistive technologies to s...

No comments yet. Log in to discuss on the Fediverse