JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE HTML>
<html>
    <head></head>
    <body>
        <div class='wrapper'>
            <div class="col">текст</div> 
            <div class="col">текст</div> 
            <div class="col">текст</div> 
            <div class="col">текст</div> 
            <div class="col five">текст текст</div>
        </div>
    </body>
</html>

CSS

.wrapper{
    position: relative;
    padding-top: 50px;
    background: #ccc;
}
.col {
    float: left;
    width: 25%;
    height: 50px;
    text-align: center;
}
.col:nth-child(1) {
    background: red;
}
.col:nth-child(2) {
    background: orange;
}

.col:nth-child(3) {
    background: green;
}
.col:nth-child(4) {
    background: blue;
}
.five {
    position: absolute;
    height: 50px;
    width:100%;
    top: 0;
    left:0;
}