JSFiddle - React, Tailwind, and code Playground

by sivashanmugam kannan

HTML

<div class="app-container">
<b>sivashanmugam</b>
</div>

CSS

.app-container{
	color:green;
  font-size:30px;
  
  @media only screen and (max-width: 500px) {
    color:yellow;
  }
  
   @media only screen and (max-width: 500px) {
    color:yellow;
  }
  
   @media only screen and (min-width: 500px) {
    color:yellow;
  }
}