JSFiddle - React, Tailwind, and code Playground

by tonkec palonkec

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
    div {
      height: 100px;
      border: 2px dotted blue;
    }
    #one {
      width: 100px;
    }
    
    #two {
      width: 10rem;
    }
    
    #three {
      width: 10em;
    }
    
    #four {
      width: 50%;
    }
    
    #five {
      width: 10cm;
    }
  </style>
</head>
<body>
  <div id="one">One</div>
  <div id="two">Two</div>
  <div id="three">Three</div>
  <div id="four">Four</div>
  <div id="five">Five</div>
</body>
</html>