<div>
<div class="left">float element / no fixed width</div>
<div class="right">adaptive</div>
</div>
* {
margin: 0;
padding: 0;
}
.left {
float: left;
height: 200px;
margin-right: 10px;
background-color: skyblue;
}
.right {
height: 200px;
background-color: pink;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.