Skip to content

Commit

Permalink
Update colons everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewvasilchuk authored Oct 31, 2023
1 parent 3a4f4d5 commit e508a9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/guide/best-practices/accessibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ You can use this technique to create functional images.

```vue-html
<form role="search">
<label for="search" class="hidden-visually">Search:</label>
<label for="search" class="hidden-visually">Search: </label>
<input type="text" name="search" id="search" v-model="search" />
<input
type="image"
Expand All @@ -441,7 +441,7 @@ You can use this technique to create functional images.

```vue-html
<form role="search">
<label for="searchIcon" class="hidden-visually">Search:</label>
<label for="searchIcon" class="hidden-visually">Search: </label>
<input type="text" name="searchIcon" id="searchIcon" v-model="searchIcon" />
<button type="submit">
<i class="fas fa-search" aria-hidden="true"></i>
Expand Down

0 comments on commit e508a9f

Please sign in to comment.