JSFiddle - React, Tailwind, and code Playground

by Venkatesh Dematti

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
</head>
<body>
  
</body>
</html>

CSS

@media ( max-width:500px) {
  body {
    background-color:red;
  }
}

@media ( min-width:900px) {
  body {
    background-color:yellow;
  }
}