JSFiddle - React, Tailwind, and code Playground
by sandro_paganotti
HTML
<!doctype html>
<html>
<head>
</head>
<body>
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
</body>
</html>
CSS
div{
line-height: 60px;
width: 60px;
text-align: center;
border: 2px solid black;
background: hsla(20,50%,50%,0.5);
}
div ~ div{
margin-top: -20px;
}
div + div{
background: hsla(40,50%,50%,0.5);
}
div + div + div{
background: hsla(60,50%,50%,0.5);
}
div + div + div + div{
background: hsla(80,50%,50%,0.5);
}