JSFiddle - React, Tailwind, and code Playground

by 규연 황

HTML

<ul class="tab">
  <li>menu01 menu01 menu01</li>
  <li>menu02</li>
  <li>menu03</li>
  <li>menu04</li>
</ul>

CSS

.tab {
  table-layout: fixed;
  display: table;
  width: 100%;
}
.tab li {
  display: table-cell;
  border: 1px solid #000;
}