When styling injected or generated HTML content, you might not have access to the classes or IDs of the elements you want to style. This can become especially annoying when dealing with link elements. Luckily, you can use the :not()
selector with an appropriate attribute selector to check for the absence of a class and style links accordingly.
a[href]:not([class]) {
color: #0077ff;
text-decoration: underline;
}
As a bonus tip, you can use the previous tip about selecting any link to further enhance this solution.
Snippet collection
A collection of quick tips and tricks to level up your coding skills one step at a time.
CSS, Visual
You can use a CSS pseudo-class selector to style all links in a page, without worrying if they have been visited or not.
CSS, Visual
Displays the link URL for links with no text.
CSS, Visual
Creates a horizontally scrollable image gallery.