Skip to content

Commit b5b4219

Browse files
Merge pull request AllThingsSmitty#205 from AllThingsSmitty/feature_update
Badge update
2 parents ec01ed3 + 4d0dbac commit b5b4219

File tree

1 file changed

+26
-2
lines changed

1 file changed

+26
-2
lines changed

README.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
<img src="./assets/img/bulb.svg" width="200" alt="light bulb icon">
33
</div>
44

5-
# CSS Protips [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)
5+
# CSS Protips [![Awesome](https://awesome.re/badge-flat.svg)](https://awesome.re)
66

77
A collection of tips to help take your CSS skills pro.
88

9+
> [!TIP]
910
> For other great lists check out [@sindresorhus](https://github.com/sindresorhus/)'s curated list of [awesome lists](https://github.com/sindresorhus/awesome/).
1011
1112
## Table of Contents
@@ -433,7 +434,30 @@ The `:is()` pseudo-class is used to target multiple selectors at once, reducing
433434
The above ruleset is equivalent to the following number selector rules...
434435

435436
```css
436-
section h1, section h2, section h3, section h4, section h5, section h6, article h1, article h2, article h3, article h4, article h5, article h6, aside h1, aside h2, aside h3, aside h4, aside h5, aside h6, nav h1, nav h2, nav h3, nav h4, nav h5, nav h6 {
437+
section h1,
438+
section h2,
439+
section h3,
440+
section h4,
441+
section h5,
442+
section h6,
443+
article h1,
444+
article h2,
445+
article h3,
446+
article h4,
447+
article h5,
448+
article h6,
449+
aside h1,
450+
aside h2,
451+
aside h3,
452+
aside h4,
453+
aside h5,
454+
aside h6,
455+
nav h1,
456+
nav h2,
457+
nav h3,
458+
nav h4,
459+
nav h5,
460+
nav h6 {
437461
color: green;
438462
}
439463
```

0 commit comments

Comments
 (0)