JSFiddle - React, Tailwind, and code Playground

by stephane_klein

HTML

<div style="display: block; max-width: 300px;">
  <ul style="display: flex; gap: 1em; list-style: none; padding: 0; width: 300px;">
    <li style="max-width: calc(100%);">
      <div style="width: 100%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; border:1px solid blue;">one two three four five six seven eight nine ten one two three four five six seven eight nine ten</div>
    </li>
    <li style="max-width: calc(100%);">
      <div style="width: 100%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; border:1px solid blue;">one two three four five six seven eight nine ten</div>
    </li>
    <li style="flex-grow: 1; max-width: calc(100%);">
      <div style="width: 100%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; border:1px solid blue;">one two three four five six seven eight nine ten</div>
    </li>
  </ul> 
</div>