css 纯样式实现绘出进度条

效果:

css 纯样式实现绘出进度条_第1张图片

css代码:

  .bar{
    height: 14px;
    width: 100%;
    font-size: 10px;
    margin-top: 5px;
    background-color: #f5f5f5;
  }
  .bar::before{
    display: block;
    counter-reset: progress var(--precent); 
    content: '';
    width: calc(1% * var(--precent));
    color: #fff;
    height: 14px;
    background-color: #2486ff;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
  }

html代码:

       

你可能感兴趣的:(html,css,css,前端,javascript)