JSFiddle - React, Tailwind, and code Playground

by acsocmel

HTML

<div class="sopra">sopra</div>
<div class="centro">centro</div>
<div class="sotto">
    <div class="pp">pp</div>
    sotto</div>

CSS

.sopra {
    width: 400px;
    height: 150px;
    margin: 0 auto;
    background-color: rgb(255,255,0)
}
.centro {
    width: 300px;
    height: 150px;
    margin: 0 auto;
    background-color: rgb(255,0,0);
    border-right: 50px solid green;
    border-left: 50px solid green;
}
.sotto {
    width: 400px;
    margin: 0 auto;
    background-color: rgb(0,255,0);
    overflow: hidden
}
.pp {
    width: 50px;
    height: 50px;
    float: left;
    background-color: rgb(153,153,153)
}