JSFiddle - React, Tailwind, and code Playground

by jonaspraem

HTML

<div class="element">
  <img src="https://images.pexels.com/photos/35646/pexels-photo.jpg?auto=compress&cs=tinysrgb&dpr=1&w=500">
  <span>hello</span>
</div>

CSS

.element {
  display: inline-block;
}

.element img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  vertical-align: unset;
  margin-right: 20px;
  cursor: pointer;
}

.element span {
  display: inline-block;
}