Is it possible to select element with specific content?
for example in #footer i have multiple so i can\'t use #footer > a {}
#footer
#footer > a {}
can i
If I understand you correctly, your selector would be something like this
a[href="yourlink"]
This will select one specific link in your footer that has "yourlink" in the href attribute Is this what you want?