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
Post a Comment