JSFiddle - React, Tailwind, and code Playground

by krustnic

HTML

<div class="container">
  <div class="text">Lorem ipsum dolor</div>
  <div class="button">
    <button>Click me!</button>
  </div>
</div>

CSS

.container {
  display: flex;
  justify-content: space-between;
}

.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}