JSFiddle - React, Tailwind, and code Playground
by GopsAB
HTML
<div class="container">
<div class="row">
<div class="inner">
<img src="assets/img/logo.jpg" width="100" class="img-responsive" alt="Responsive image">
</div>
<div class="col-md-6">
1
</div>
<div class="col-md-6">
2
</div>
</div>
</div>
CSS
.col-md-6
{
float: left;
width:40px;
margin-left:10px;
}
.row
{
margin-left:40%;
}