JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">Hello World!</div>

CSS

div.container {
  width: 80%;
  background-color: blue;
  color: #fff;    
}

div.container:hover {
  width: 100%;
  background-color: red;    
}