JSFiddle - React, Tailwind, and code Playground

HTML

<button class='tile'>
    <h3>Ăśberschrift welche sehr lang sein kann</h3>	
</button>

CSS

/*-------------------------------------------------------------------------------
	 Desktop Tiles (_desktoptiles.scss)
  -------------------------------------------------------------------------------*/

.tile {
  background-color: #e6e6e6;
  height: 120px;
  width: 200px;
  margin: 15px 25px; }

.tile h3 {
    font-size: 10pt;
    font-weight: normal;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}