css - Webkit gradient background-gradient in html5 progress bar? -


in attempt color inside of progress bar use below code:

progress::-webkit-progress-bar-value {   background-color:-webkit-gradient(linear,left bottom ,left top,from(#c6e6e6),to(#d1e4e6)) ; } 

however gradients not work, simple colors.

try

progress::-webkit-progress-bar-value {   background:-webkit-gradient(linear,left bottom ,left top,from(#c6e6e6),to(#d1e4e6)) ; } 

background instead of background-color , webkit instead of weblit.


Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -