JSFiddle - React, Tailwind, and code Playground
by bedenz
HTML
<div class="temp">
<div class="wrapper">
<div class="button">+</div>
<div class="text">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
</div>
</div>
</div>
CSS
.temp {}
.wrapper {
display: flex;
position: relative;
font-size: 25px;
line-height: 2em;
}
.button {
position: absolute;
display: block;
left: 0;
top: 0;
bottom: 0;
width: 50px;
font-weight: 700;
color: red;
z-index: 10;
text-align: center;
border: 1px solid black;
}
.text {
display: inline-block;
}