diff --git a/blog_posts/css-style-default-links.md b/blog_posts/css-style-default-links.md index d9dc014cf..f1ed670a1 100644 --- a/blog_posts/css-style-default-links.md +++ b/blog_posts/css-style-default-links.md @@ -10,7 +10,7 @@ excerpt: A short summary of your story up to 180 characters long. firstSeen: 2022-11-23T05:00:00-04:00 --- -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 abscence of a class and style links accordingly. +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. ```css a[href]:not([class]) {