JSFiddle - React, Tailwind, and code Playground

by bs_4xxi

HTML

<div class="list-item">
  <div class="item-contents">We've got a verylongwordhere</div>
</div>

CSS

.list-item {
  border: 1px solid #999;
  padding: 10px;
  text-align: center;
  width: 350px;
}

.item-contents {
  border: 1px dashed #999;
  display: inline-block;
  text-align: left;
  font-size: 30px;
}