JSFiddle - React, Tailwind, and code Playground

by Tyler

HTML

<div class="content">
    <div class="contact">[email protected]</div>
    <div class="branding">
        <h1>Name</h1>
        <img src="http://lorempixel.com/200/200" />
    </div>
</div>

CSS

.content {
    display: flex;
    flex-direction: row-reverse;
}

.branding {
    width: 100%;
    background: lightgray;
}