如何改变进度条的颜色(How to change the color of a progress b

2019-08-05 16:02发布

我想改变最后更新文字的颜色,默认情况下它是黑色的,有没有办法来介绍一些代码来改变文字颜色为我的栏文本制作? 帮我介绍一个缺少的代码。

<div id="progress">
    <span id="percent">2%</span>
    <div id="bar"></div>
    </div>
Last updated: 7/01/2013
#progress{
 width: 500px;   
 border: 1px solid orange;
 position: relative;
 padding: 1px;
}

#percent {
 position: absolute;   
 left: 50%;
 color:#C3B004; 
}

#bar {
 height: 20px;
 background-color:#2CB032;
 width: 2%;
}

这里是链接了吧: 链接

Answer 1:

我想你可以包装Last updated: 7/01/2013<span>标记,并给它一个类,那么你可以风格你想要的东西。

<span class="updated">Last updated: 7/01/2013</span>

CSS:

.updated {
    font-size: 12px;    //size
    color: green;       //colour
    font-family:"Arial" //font 
}


文章来源: How to change the color of a progress bar