JSFiddle - React, Tailwind, and code Playground
by fersterin
HTML
<div id ="first">First
<div class="one"></div>
</div>
<div id ="second">Second
<div class="two"></div>
</div>
<div id ="third">Третий
<div class="three"></div>
</div>
CSS
#first , #second , #third {
width: 100px;
height: 100px;
}
#first {
background-color: #c0c0c0;
}
#second {
background-color: lightgreen;
margin: -25px 0 0 25px;
}
#third {
background-color: lightblue;
margin: -25px 0 0 50px;
}
/* Блоки внутренние */
.one, .two, .three {
width: 30px;
height: 30px;
}
.one {
background-color: red;
}
.two {
background-color: blue;
}
.three {
background-color: yellow;
}