Progress Bar with HTML and CSS

前端 未结 15 1067
耶瑟儿~
耶瑟儿~ 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:48

    #progressbar {
      background-color: black;
      border-radius: 13px;
      /* (height of inner div) / 2 + padding */
      padding: 3px;
    }
    
    #progressbar>div {
      background-color: orange;
      width: 40%;
      /* Adjust with JavaScript */
      height: 20px;
      border-radius: 10px;
    }

    Fiddle

    (EDIT: Changed Syntax highlight; changed descendant to child selector)

提交回复
热议问题