JSFiddle - React, Tailwind, and code Playground
by ocorpening
HTML
<html>
<body>
<head>
</head>
<div class="flex-container">
<div class="item-left">
hi mom
</div>
<div class="item-right">
hi dad
</div>
</div>
</body>
</html>
CSS
.item-left {
flex: none;
width:100px;
}
.item-right {
flex: none;
width: 40px;
}
.flex-container {
display: flex;
}