在尝试为进度条内部着色时,我使用以下代码:
progress::-webkit-progress-bar-value {
background-color:-webkit-gradient(linear,left bottom ,left top,from(#C6E6E6),to(#D1E4E6)) ;
}
然而渐变不起作用, 只有简单的颜色。
答案 0 :(得分:2)
尝试
progress::-webkit-progress-bar-value {
background:-webkit-gradient(linear,left bottom ,left top,from(#C6E6E6),to(#D1E4E6)) ;
}
background
代替background-color
和webkit
代替weblit
。