JSFiddle - React, Tailwind, and code Playground

by Nicolas PUJOL

HTML

<div class="progress-info">CRAZY BONUS : 0,10&euro; offerts toues les 1&euro; gagnés !</div>
<div class="progress-bloc">
    <div class="progress-bar"></div>
    <div class="progress-val">10%</div>
</div>

CSS

.progress-bloc {
    border: 1px solid #000;
    height: 20px;
    line-height:20px;
    text-align:center;
    position:relative;
}
.progress-bar {
    background-color: #ffb600;
    height: 20px;
    width: 10%;
    position: absolute;
}
.progress-val {
    left: 0;
    position: absolute;
    right: 0;
    font-weight:bold;
}
.progress-info {
    text-align: center;
    font-weight:bold;
}