We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Here is a non-exhaustive list of discrepancies exist between Boosted and Boostrap.
aria-label
In Bootstrap, we have for example <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>.
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
In Boosted, we rather have <button type="button" class="btn-close" data-bs-dismiss="modal"><span class="visually-hidden">Close</span></button>.
<button type="button" class="btn-close" data-bs-dismiss="modal"><span class="visually-hidden">Close</span></button>
We prefer to have an hidden text in CSS rather than an aria-label because we can get the visible label when the CSS is deactivated.
There was an error while loading. Please reload this page.