I understand that css rules can target elements specified by attribute values, e.g.:
input[type=\"text\"] {}
Can I make a rule that targets ele
The only solution that worked for me was to place a:link { } within my code.
a:link { }
I also tried
a:not([href]) input:not([href=""]) input:not([href~=""])
But for a .scss file with multiple a tags used as standard code blocks (not my idea), this was the only solution.