Progress bar layout using CSS and HTML

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

    .progress{
            position:relative;
            width:500px;
            border:1px solid #333;
            position:relative;
            padding:3px;
        }
        .bar{
            background-color:#00ff00;
            width:50%;
            height:20px;
            transition:width 150ms;
        }
        .percent{
            position:absolute;
            display:inline-block;
            top:3px;
            left:50%;
            transform:translateX(-50%);
        }
    50%

    interactive demo at http://jsfiddle.net/gaby/Zfzva/

提交回复
热议问题