Progress bar layout using CSS and HTML

前端 未结 9 2304
别跟我提以往
别跟我提以往 2020-12-30 01:03

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

9条回答
  •  悲哀的现实
    2020-12-30 01:30

    HTML:

    30%

    CSS:

    #progress {
     width: 500px;   
     border: 1px solid black;
     position: relative;
     padding: 3px;
    }
    
    #percent {
     position: absolute;   
     left: 50%;
    }
    
    #bar {
     height: 20px;
     background-color: green;
     width: 30%;
    }
    

    Sample here: http://jsfiddle.net/WawPr/

提交回复
热议问题