JSFiddle - React, Tailwind, and code Playground

by Arup Rakshit

HTML

<div class="another-grid">
  <div>
    Lorem Ipsum is simply dummy text of the printing and typesetting industry.
  </div>
  <div>
    Lorem Ipsum is simply dummy text of the printing and typesetting industry.
  </div>
  <div>
    Lorem Ipsum is simply dummy text of the printing and typesetting industry.
  </div>
  <div>
    It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.
  </div>
  <div>
    Lorem Ipsum is simply dummy text of the printing and typesetting industry.
  </div>
  <div>
    Lorem Ipsum is simply dummy text of the printing.
  </div>
</div>

CSS

.another-grid {
  display: grid;
  grid-template-columns: 120px 120px 1fr;
  max-width: 300px;
}

.another-grid div {
  background-color: #eef9fd;
  border: 1px solid #999;
}