JSFiddle - React, Tailwind, and code Playground
HTML
<h1>Header</h1>
CSS
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
h1 {
background: rgba(255, 0, 0, 0.5); /* transparent red */
}
}
/* Anything Smaller than Large */
@media (max-width: 1199px) {
h1 {
background: rgba(255, 192, 203, 0.5); /* transparent pink */
}
}