@@ -74,18 +74,18 @@ You can enable tab completion (recommended) by opening
7474
7575#### Pseudo Styles
7676
77- | Snippet | Purpose |
78- | ----------- | --------------- |
79- | ` hover ` | : hover |
80- | ` focus ` | : focus |
81- | ` active ` | : active |
82- | ` disabled ` | : disabled |
83- | ` visited ` | : visited |
84- | ` first ` | : first-child |
85- | ` last ` | : last-child |
86- | ` even ` | : nth-child (2n) |
87- | ` odd ` | : nth-child (odd) |
88- | ` nth-child ` | : nth-child () |
77+ | Snippet | Purpose |
78+ | ----------- | ------------------ |
79+ | ` hover ` | : hover |
80+ | ` focus ` | : focus |
81+ | ` active ` | : active |
82+ | ` disabled ` | : disabled |
83+ | ` visited ` | : visited |
84+ | ` first ` | : first-child |
85+ | ` last ` | : last-child |
86+ | ` even ` | : nth-child (2n) |
87+ | ` odd ` | : nth-child (odd) |
88+ | ` nth-child ` | : nth-child (` rule ` ) |
8989
9090#### [ Breakpoints] ( https://tailwindcss.com/docs/breakpoints )
9191
@@ -267,15 +267,15 @@ You can enable tab completion (recommended) by opening
267267| Snippet | Purpose |
268268| --------------------------- | ------------------------------------------------------------- |
269269| ` super-centered ` | place-items: center; |
270- | ` deconstructed-pancake ` | flex: 0 1 < baseWidth > }; |
271- | ` sidebar-says ` | grid-template-columns: minmax(< min >, < max >) ...}; |
270+ | ` deconstructed-pancake ` | flex: 0 1 ` baseWidth ` }; |
271+ | ` sidebar-says ` | grid-template-columns: minmax(` min ` , ` max ` ) ` ... ` }; |
272272| ` pancake-stack ` | grid-template-rows: auto 1fr auto; |
273273| ` classic-holy-grail-layout ` | grid-template: auto 1fr auto / auto 1fr auto; |
274274| ` 12-span-grid ` | grid-template-columns: repeat(12, 1fr); |
275- | ` ram ` | grid-template-columns: repeat(auto-fit, minmax(< base > , 1fr)); |
275+ | ` ram ` | grid-template-columns: repeat(auto-fit, minmax(` base ` , 1fr)); |
276276| ` line-up ` | justify-content: space-between; |
277- | ` clamping-my-style ` | clamp(< min >, < actual >, < max > ); |
278- | ` respect-for-aspect ` | aspect-ratio: < width > / < height > }; |
277+ | ` clamping-my-style ` | clamp(` min ` , ` actual ` , ` max ` ); |
278+ | ` respect-for-aspect ` | aspect-ratio: ` width ` / ` height ` }; |
279279
280280## Extra Guides
281281
0 commit comments