Change border-radius of progress bar value - HTML CSS CSS Property

HTML CSS examples for CSS Property:border-radius

Description

Change border-radius of progress bar value

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">

progress {<!--   w w  w  . ja  v a 2 s . c om-->
   border: 0;
   height: 40px;
   border-radius: 20px;
}
progress::-webkit-progress-bar {
   border: 0;
   height: 40px;
   border-radius: 20px;
}
progress::-webkit-progress-value {
   border: 0;
   height: 40px;
   border-radius: 20px;
}
progress::-moz-progress-bar {
   border: 0;
   height: 40px;
   border-radius: 20px;
}


      </style> 
 </head> 
 <body> 
  <progress class="progress" max="100" value="35"></progress>  
 </body>
</html>

Related Tutorials