Skip to content

Commit

Permalink
fix: auto-cleanup by bot (#31924)
Browse files Browse the repository at this point in the history
chore: auto-fix Markdownlint, Prettier, and front-matter issues
  • Loading branch information
mdn-bot authored Jan 26, 2024
1 parent 6b0063f commit a4077ca
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions files/en-us/web/css/attribute_selectors/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ a[title] {
}

/* <a> elements with an href matching "https://example.org" */
a[href="https://example.org"] {
a[href="https://example.org"]
{
color: green;
}

Expand Down Expand Up @@ -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;
}
```
Expand Down

0 comments on commit a4077ca

Please sign in to comment.