I want to focus each tag "p" separately when I click on it, for example, "focus": "CSS" in the tab. The problem is that the selector “focus” does not work on paragraphs, here is an example:
HTML
<div id="myDiv">
<p>Some Content 1</p>
<p>Some Content 2</p>
<p>Some Content 3</p>
<p>Some Content 4</p>
</div>
CSS
#myDiv p:focus {background-color:red;}
How to find an alternative solution for his work?
source
share