JSFiddle - React, Tailwind, and code Playground

by halirgb

HTML

<div class="container">
<div class="progress-text">
    100% complet
</div>
</div>

CSS

.container{
    position:relative;
    height:30px;
    width:200px;
    margin-top:100px;
    margin-left:100px;
    background-color:red;
}
.progress-text{
    width:200px;
    height:20px;
    text-align:center;
    position:absolute;
    background-color:blue;
}