2

I got progressbar, but it doesn't change color in chrome. Here is a code:

progress.xp::-webkit-progress-value:{ 
    background: #66CC33; 
}

I looked up for it and it seems like its ok but it doesn't work.

Maybe I cant use class in this kind of code? or in some another way?

codingrose
  • 15,563
  • 11
  • 39
  • 58
yamahamm
  • 103
  • 1
  • 10

2 Answers2

6

check the fiddle:

http://jsfiddle.net/4Y9kw/5/

<progress class="xp" value="50" max="60"></progress>

progress.xp {
   -webkit-appearance: none;
   appearance: none;

}
progress.xp::-webkit-progress-value{
    background:red;
}
Susheel Singh
  • 3,824
  • 5
  • 31
  • 66
0
progress.xp::-webkit-progress-value:{ 
    background: #66CC33; 
}

the : must be removed, see:

                                ***|
progress.xp::-webkit-progress-value { 
    background: #66CC33; 
}
Daniel W.
  • 31,164
  • 13
  • 93
  • 151