div:focus
does not work
div:focus {
background-color:red;
}
<div>Will</div>
<div>You</div>
<div>Marry</div>
<div>Me</div>
But I got a suggestion to solve this by using tabindex
div:focus {
background-color:red;
}
<div tabindex="1">Will</div>
<div tabindex="1">You</div>
<div tabindex="1">Marry</div>
<div tabindex="1">Me</div>
But I don't have any idea why it works if I added tabindex
? And why it does not work without tabindex
? I don't want the answer, I just want to know the reason?