JSFiddle - React, Tailwind, and code Playground
by andrey90vs
HTML
<div class="container">
<div class="a1">
text
</div>
<div class="a2">
logo
</div>
<div class="a3">
text
</div>
</div>
SCSS
.container {
border: 1px solid red;
position:relative;
&:after {
content: '';
display: block;
clear: both;
}}
.a1,.a2,.a3 {
float: left;
width: 33.33%;
}
@media (max-width: 300px) {
.a1,.a3 {
width: 50%;
}
.a2 {
position: absolute;
height: 50px;
left: 0;
bottom: 0;
}
}