I have noticed the use of TailWindCSS in the website's HTML files. I believe this is redundant with CSS-3's new media query feature:
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}
This is merely an example; instead of changing background colors, we can use this to make more responsive web pages using more well known technologies and wider browser support.
I'd love to get everyone's opinion on this.