div:focus does not works
div:focus {
background-color:red;
}
<div>Will</div>
<div>You</div>
<div>Marry</div>
<div>Me</div>
But I got a suggestion o 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's works if I added tabindex?? and why it does not works without tabindex? I don't want the answer i just want to know the reason??