You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: curriculum/challenges/english/blocks/review-front-end-libraries/6724e2dbf723fe1c8883cc69.md
+93Lines changed: 93 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1147,6 +1147,99 @@ Here is an example of using Bootstrap to create a list group. Instead of applyin
1147
1147
</div>
1148
1148
```
1149
1149
1150
+
## Tailwind CSS
1151
+
1152
+
Tailwind is a utility-first CSS framework. Instead of writing custom CSS rules, you build your designs by combining small utility classes directly in your HTML.
1153
+
1154
+
### Responsive Design Utilities
1155
+
1156
+
Tailwind uses prefixes such as `sm:`, `md:`, and `lg:` to apply styles at different screen sizes.
1157
+
1158
+
```html
1159
+
<divclass="w-full md:w-1/2 lg:flex-row">
1160
+
Responsive layout
1161
+
</div>
1162
+
```
1163
+
1164
+
### Flexbox Utilities
1165
+
1166
+
Classes like `flex`, `flex-col`, `justify-around`, and `items-center` make it easy to create flexible layouts.
-**CSS preprocessor**: A CSS preprocessor is a tool that extends standard CSS. It compiles the code with extended syntax into a native CSS file. It can be helpful for writing cleaner, reusable, less repetitive, and scalable CSS for complex projects.
0 commit comments