Context: A button that expands and collapses a section of text.
Bad code
<button class="panel-heading" tabindex="0" href="#collapse0" aria-expanded="true">
<legend> Industries Served </legend>
</button>
Issues and how to fix them
legend
is not allowed as a child of any other element thanfieldset
.
(HTML spec for legend)- You don’t need the
tabindex
attribute if you use abutton
. HTML buttons are focusable by default. href
attribute is not allowed on thebutton
element.
(HTML spec for button)
Good code
<button class="panel-heading" aria-expanded="true">
Industries Served
</button>