JSFiddle - React, Tailwind, and code Playground
by brunomuller
HTML
<div class="wrapper">
<div class="l-col">
<div class="icon"></div>
</div>
<div class="r-col">
<input type="text">
</div>
<div style="clear: both;"></div>
</div>
CSS
.wrapper {
background-color: #ddd;
width: 300px;
}
.icon {
width: 50px;
height: 50px;
background-color: yellow;
}
.l-col {
float: left;
}
.r-col {
background-color: red;
margin-left: 70px;
}
input {
box-sizing: border-box;
background-color: blue;
display: block;
width: 100%;
padding: 3px;
}