JSFiddle - React, Tailwind, and code Playground

by Dipak1991

HTML

<div>
    <div class="progress"></div>
</div>

CSS

* {
    margin:0;
    padding:0;
    box-sizing: border-box;
        
}
div {
    width:40%;
    background: grey;    
    float:left;
}

.progress {
    width:30px;
    background: red;
    height: 5px;    
    display: inline-block;
}