JSFiddle - React, Tailwind, and code Playground
by lichangwei
HTML
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
</ul>
CSS
ul{
width: 340px;
}
li{
width: 100px;
border: 1px solid black;
float: left;
height: 100px;
margin: 10px 10px 0 0;
list-style: none;
}
li:nth-child(1){
height: 230px
}
li:nth-child(2){
height: 220px
}