JSFiddle - React, Tailwind, and code Playground

by Oleg Khobotov

HTML

<div class="wrap">
    <div class="item item--mod"></div>
    <div class="item"></div>
    <div class="item"></div>
    <div class="item"></div>
</div>

CSS

.wrap{
    overflow: auto;
    width: 300px;
    }
.item{
    float: left;
    width: 150px;
    height: 100px;
    border: 1px solid yellow;
    background-color: green;
    }
    .item--mod{
        height: 100.3px;
        }
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}