JSFiddle - React, Tailwind, and code Playground

by jimmzzz

HTML

<div class="container">
  <h2>Without `<wbr />`</h2>
  <p>
    https://www.example.com/thisisaverylongstringwithoutbreakopportunityanditoverflows
  </p>
</div>
<div class="container">
  <h2>With `<wbr />`</h2>
  <p>
    https://www.example.com/this<wbr />is<wbr />a<wbr />very<wbr />long<wbr />string<wbr />with<wbr />breaks
  </p>
</div>