JSFiddle - React, Tailwind, and code Playground

HTML

<div class="parent" onclick="alert('biblethump')">
  <div class="child">
    Lorem ipsum
  </div>
</div>

CSS

.parent {
  display: inline-block;
  border: 2px solid red;
  padding-left: 0;
  background-color: red;
}

.child {
  display: inline-block;
  border: 2px dashed lime;
  border-radius: 10px;
  padding: 1em;
  vertical-align: bottom;
  height: 100px;
  background-color: white;
}