Home › Forums › CSS › Hiding a link › Reply To: Hiding a link
March 25, 2016 at 8:00 am
#239776
Member
Depends on how much you know about the href
of the link.
I’d use an attribute selector:
http://www.w3schools.com/css/css_attribute_selectors.asp
a[href*="abc"] {
display: none;
}