Is it possible for you to add pure CSS tabs using ARIA roles e.g.:
<div role="tablist">
<input type="radio" name="tablist" id="tab-1" role="tab" aria-controls="tabpanel-1" checked><label for="tab-1">Tab 1</label>
...
<div id="tabpanel-1" tabindex="0" role="tabpanel">Lorem ipsum...</div>
...
</div>
?
Is it possible for you to add pure CSS tabs using ARIA roles e.g.:
?