Progress bar layout using CSS and HTML

前端 未结 9 2252
别跟我提以往
别跟我提以往 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:10

    Take this example....

    HTML CODE:

    CSS

    .text { 
        color: black;
        margin-left: 130px;
        position: absolute;
    }
    

    JQUERY:

    $( "#progressbar" ).progressbar({ 
       value: some_Value;
     });
    $("#progressbar span.text").text(some_Value + "%");
    

提交回复
热议问题