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
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.