Progress Bar with HTML and CSS

前端 未结 15 1065
耶瑟儿~
耶瑟儿~ 2020-12-02 05:13

I want to create a progress bar like in the below image:

\"Progress

I have no idea about

15条回答
  •  遥遥无期
    2020-12-02 05:54

    Same as @RoToRa's answer, with a some slight adjustments (correct colors and dimensions):

    body {
      background-color: #636363;
      padding: 1em;
    }
    
    #progressbar {
      background-color: #20201F;
      border-radius: 20px; /* (heightOfInnerDiv / 2) + padding */
      padding: 4px;
    }
    
    #progressbar>div {
      background-color: #F7901E;
      width: 48%;
      /* Adjust with JavaScript */
      height: 16px;
      border-radius: 10px;
    }

    Here's the fiddle: jsFiddle

    And here's what it looks like: jsFiddle-screenshot

提交回复
热议问题