mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
32 lines
330 B
CSS
32 lines
330 B
CSS
.example {
|
|
color: red;
|
|
}
|
|
|
|
@media (min-width: 576px) {
|
|
.sm\:example {
|
|
color: red;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.md\:example {
|
|
color: red;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.lg\:example {
|
|
color: red;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.xl\:example {
|
|
color: red;
|
|
}
|
|
}
|
|
|
|
.john {
|
|
content: "wick";
|
|
}
|