JSFiddle - React, Tailwind, and code Playground

by biped

HTML

<ul>
    <li id = 'product_types'><a href='#' tabindex="1">First</a></li>
    <li id = 'product_types'><a href='#' tabindex="2">Second</a></li>
</ul>

CSS

#product_types  {
    background-color: #B0B0B0;
    position: relative;
}

#product_types a:focus 
{     background-color:yellow;    }