From a4077ca309f616ed9c408ee506b20ba867837dfa Mon Sep 17 00:00:00 2001 From: MDN Web Docs GitHub Bot <108879845+mdn-bot@users.noreply.github.com> Date: Fri, 26 Jan 2024 07:16:23 +0100 Subject: [PATCH] fix: auto-cleanup by bot (#31924) chore: auto-fix Markdownlint, Prettier, and front-matter issues --- files/en-us/web/css/attribute_selectors/index.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/files/en-us/web/css/attribute_selectors/index.md b/files/en-us/web/css/attribute_selectors/index.md index 9bac4fcd4dfd9f8..b5eed922ba240a4 100644 --- a/files/en-us/web/css/attribute_selectors/index.md +++ b/files/en-us/web/css/attribute_selectors/index.md @@ -20,7 +20,8 @@ a[title] { } /* elements with an href matching "https://example.org" */ -a[href="https://example.org"] { +a[href="https://example.org"] +{ color: green; } @@ -100,7 +101,8 @@ a[href$=".org"] { } /* Links that start with "https://" and end in ".org" */ -a[href^="https://"][href$=".org"] { +a[href^="https://"][href$=".org"] +{ color: green; } ```