JSFiddle - React, Tailwind, and code Playground

HTML

<div class="wrapper">
     <div class="car">
      <div class="image">
          <img alt="" src="http://placehold.it/50x50&text=CAR" />
      </div>
      <div class="makeAndModel">
            <div class="brand">
                Mercedes
            </div>          
            <div  class="model">
                W126000000000000000000000000000000000000000000000000000000000000000000000000
            </div>
     </div>
</div>
</div>

CSS

.car {
    padding: 0 0 0 75px; /* 75px being the width of the thumbnail + how much space you want to put between it and your text */
	position: relative; /* So the thumbnail is relative to this */
 word-wrap: break-word; 
}
.car img {
    left: 0;
		position: absolute;
		
}
.model {
    width:50%;
}