Hello everyone in my case I want to target the 3 element for example, and I have the tags different, the 3 element can be p or div or something else, so I want to just target the 3 element what ever it is, i want to select always the 3 element.
Can I do that with CSS, if any help?
For example :
<div> <p></p> <span><span> <div></div> //3 element here is div <a></a> </div> Or :
<div> <div></div> <span><span> <p></p> //3 element here is p <a></a> </div>
div > *? ordiv *:nth-child(3)or?