Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions files/en-us/web/api/element/ariabraillelabel/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ This example shows how to get and set the `ariaBrailleLabel` property.

#### HTML

First we define a button with label text "3 out of 5 stars" and an `aria-braillelabel` attribute with a value of `"\*\*\*"`.
First we define a button with label text "3 out of 5 stars" and an `aria-braillelabel` attribute with a value of `"***"`.
This allows a braille display to show "btn \*\*\*" in braille rather than the more verbose "btn gra 3 out of 5 stars".

```html
<button id="button" aria-braillelabel="\*\*\*">3 out of 5 stars</button>
<button id="button" aria-braillelabel="***">3 out of 5 stars</button>
```

```html hidden
Expand Down
Loading
Loading