JSFiddle - React, Tailwind, and code Playground
by Louis Walch
HTML
<div class="inner">
<div class="b">B</div>
<div class="c">TESTING</div>
<div class="b">B</div>
</div>
SCSS
.inner {
width: 190px;
height: 160px;
position: relative;
display: flex;
flex-direction: row;
align-items: center;
background-color: pink;
.b {
width: 60px;
height: 60px;
flex: 60px 0 60px;
background-color: red;
}
.c {
line-height: 60px;
font-size: 12px;
color: black;
background-color: yellow;
flex: 1;
}
}