Is it possible to select element with specific content?
for example in #footer i have multiple so i can’t use #footer > a {}
can i select only that <a> if #footer has <a herf="#header">Top of Page</a>, but not all <a>
Is there any cross-browser way to select like this?
If I understand you correctly, your selector would be something like this
This will select one specific link in your footer that has “yourlink” in the href attribute
Is this what you want?