JSFiddle - React, Tailwind, and code Playground

by Pritam Bohra

HTML

<div class="width"><p>this is width</p></div>
<div class="max-width"><p>this is max-width</p></div>
<div class="min-width"><p>this is min-width</p></div>

CSS

.width {
  width: 500px;
  border: 2px solid red;
}

.max-width {
  max-width: 500px;
  border: 2px solid red;
}

.min-width {
  min-width: 500px;
  border: 2px solid red;
}