I am trying to achieve UI as shown in the image. However I am having little hard time after trying combinations of positioning now I am clueless. Can someone help me with th
To change % dynamically here is code
HTML
{{currentTimer}}
{{duration}}
CSS
.progress {
width: 100%;
// border: 1px solid black;
position: relative;
padding: 0px;
}
.percent {
position: absolute;
left: 0%;
}
.bar {
height: 16px;
background-color: rgb(41, 49, 32);
}
.duration {
position: absolute;
left: 90%;
top:-5%
}