JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
  <div class="box box1">
    Tutorial
  </div>
  <div class="box box2">
    Lorem ipsum dolor set amet. Bla bla bla etetsetsklajdsfas.mehr text
  </div>
</div>

CSS

.container{
  max-width: 20%;
}
.box{
  background-color: grey;
  color: white;
  text-align: center;
  margin-bottom: 1px;
  border-radius: 5px;
}