Published
- 1 min read
how to set an element affected by tab
The solution for this is noted below
how to set an element affected by tab
Solution
<div tabindex="0">
<div>
<!-- Affected by tab -->
<div tabindex="-1">
<div><!-- Not affected by tab --></div>
</div>
</div>
</div>
Try other methods by searching on the site. That is if this doesn’t work