Progress Bar with HTML and CSS

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

    In modern browsers you could use a CSS3 & HTML5 progress Element!

    progress {
      width: 40%;
      display: block; /* default: inline-block */
      margin: 2em auto;
      padding: 3px;
      border: 0 none;
      background: #444;
      border-radius: 14px;
    }
    progress::-moz-progress-bar {
      border-radius: 12px;
      background: orange;
    
    }
    /* webkit */
    @media screen and (-webkit-min-device-pixel-ratio:0) {
      progress {
        height: 25px;
      }
    }
    progress::-webkit-progress-bar {
        background: transparent;
    }  
    progress::-webkit-progress-value {  
      border-radius: 12px;
      background: orange;
    } 

提交回复
热议问题