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
@@ -191,7 +191,7 @@ Explicitly setting the labels with a matching id is better supported by assistiv
191
191
You can also give the input an accessible name with [`aria-label`](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label).
192
192
193
193
```vue-html
194
-
<label for="name">Name</label>
194
+
<label for="name">Name: </label>
195
195
<input
196
196
type="text"
197
197
name="name"
@@ -220,7 +220,7 @@ Using [`aria-labelledby`](https://developer.mozilla.org/en-US/docs/Web/Accessibi
220
220
>
221
221
<h1 id="billing">Billing</h1>
222
222
<div class="form-item">
223
-
<label for="name">Name:</label>
223
+
<label for="name">Name:</label>
224
224
<input
225
225
type="text"
226
226
name="name"
@@ -250,7 +250,7 @@ Using [`aria-labelledby`](https://developer.mozilla.org/en-US/docs/Web/Accessibi
250
250
>
251
251
<h1 id="billing">Billing</h1>
252
252
<div class="form-item">
253
-
<label for="name">Full Name:</label>
253
+
<label for="name">Full Name:</label>
254
254
<input
255
255
type="text"
256
256
name="name"
@@ -330,7 +330,7 @@ You can provide additional instructions and bind multiple ids inside an [`aria-l
0 commit comments