JSFiddle - React, Tailwind, and code Playground
by eleonore
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Индикатор выполнения</title>
</head>
<body>
<div class="all">
<div class="one"></div><span class="begin">0</span>
<span class="end">5</span><div class="center">50%</div>
</div>
</body>
</html>
CSS
div.all{width:250px; border:1px solid rgba(0,0,0,1);
position:relative; background:rgba(255,255,255,1);}
div.one{background:rgba(255,204,204,1); position:absolute; width:50%;height:100%;}
.begin{padding-left:2px;position:absolute; top:1px;}
.end{right:0; padding-right:2px;position:absolute; top:1px;}
.center{ position:relative; text-align:center;}