JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div>Item1 Item1 Item1 Item1 Item1</div>
<div>Item2 Item2 Item2 Item2 Item2</div>
</div>
CSS
.container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.container div:nth-child(1) {
background-color: orange;
}
.container div:nth-child(2) {
background-color: green;
}
@media(max-width: 768px) {
.container {
justify-content: space-around;
}
}