JSFiddle - React, Tailwind, and code Playground

by Tan

HTML

<div class="cta_panel">
<div class="cta_img"></div>
<div class="cta_txt">Hello</div>
</div>

CSS

.cta_panel {background-color:#000000;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: flex-start;
    }


.cta_txt {flex-grow: 1;align-self: stretch;background-color: yellow;}

.cta_img {width:300px;height:300px;background-color:#dedede;}