You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/guide/a11y-semantics.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ Feel free to inspect this element in Chrome DevTools to see how the accessible n
76
76
77
77
#### aria-labelledby
78
78
79
-
Using [`aria-labelledby`](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-labelledby_attribute) is similar to `aria-label`expect it is used if the label text is visible on screen. It is paired to other elements by their `id` and you can link multiple `id`s:
79
+
Using [`aria-labelledby`](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-labelledby_attribute) is similar to `aria-label`except it is used if the label text is visible on screen. It is paired to other elements by their `id` and you can link multiple `id`s:
80
80
81
81
```html
82
82
<form
@@ -106,7 +106,7 @@ Using [`aria-labelledby`](https://developer.mozilla.org/en-US/docs/Web/Accessibi
106
106
107
107
#### aria-describedby
108
108
109
-
[aria-describedby](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-describedby_attribute) is used the same way as `aria-labelledby`expect provides a description with additional information that the user might need. This can be used to describe the criteria for any input:
109
+
[aria-describedby](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-describedby_attribute) is used the same way as `aria-labelledby`except provides a description with additional information that the user might need. This can be used to describe the criteria for any input:
0 commit comments