JSFiddle - React, Tailwind, and code Playground
by funato
HTML
<div class="container">
<div class="column01">
<p>あああああああああああああああああああああ</p>
</div>
<div class="column02">
<p>おおおおおおおおおおおおおおおおおおおおおおおおおおおおおおおおおおおおおおおおお</p>
</div>
CSS
.container{
border:dotted 2px blue;
display:-webkit-flex;
display:-moz-flex;
display:flex;
display:box;
display:-webkit-box;
display:-moz-box;
}
.column01{
width:200px;
background-color:orange;
}
.column02{
width:400px;
background-color:greenyellow;
}