How to change the color of a progress bar

后端 未结 1 1667
北荒
北荒 2021-01-23 08:07

I want to change the color of the last update text, by default it is black , is there a way to introduce some code to change the text color as i made for the ba

相关标签:
1条回答
  • 2021-01-23 08:35

    I assume you can wrap the Last updated: 7/01/2013 in <span> tags, and give it a class, then you can style it however you want.

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

    CSS:

    .updated {
        font-size: 12px;    //size
        color: green;       //colour
        font-family:"Arial" //font 
    }
    
    0 讨论(0)
提交回复
热议问题