Having an issue with Safari not focusing on my anchor element. I added tabindex="0" around the div to address this, but now the link doesn't work when pressing enter in any browser. Am I missing something here?
<div class="used__button" tabindex="0">
<a href="/new/sales/lights/red-lamps">Find Used</a>
</div>
Prior to adding tabindex, the link worked in Chrome when pressing enter. I introduced tabindex="0" to bring focus to the element in Safari for accessibility purposes.