@@ -74,18 +74,18 @@ You can enable tab completion (recommended) by opening
74
74
75
75
#### Pseudo Styles
76
76
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 ` ) |
89
89
90
90
#### [ Breakpoints] ( https://tailwindcss.com/docs/breakpoints )
91
91
@@ -267,15 +267,15 @@ You can enable tab completion (recommended) by opening
267
267
| Snippet | Purpose |
268
268
| --------------------------- | ------------------------------------------------------------- |
269
269
| ` 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 ` ) ` ... ` }; |
272
272
| ` pancake-stack ` | grid-template-rows: auto 1fr auto; |
273
273
| ` classic-holy-grail-layout ` | grid-template: auto 1fr auto / auto 1fr auto; |
274
274
| ` 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)); |
276
276
| ` 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 ` }; |
279
279
280
280
## Extra Guides
281
281
0 commit comments