I've been using materializecss for some time now and recently encountered an issue while trying to navigate my website using keyboard tabbing.
The checkbox in materializecss is a custom CSS checkbox, but when I set the tabindex for the label of the checkbox, it only seems to work in Firefox browsers when I use the tab key.
<input type="checkbox" class="group1" id="opt1" />
<label for="opt1" class="group1" tabindex="0">1</label>
Does anyone know of a workaround for this problem?