我正在使用标签,但在mozilla中,它看起来像这样:
但我想这样做:
我正在使用的代码:
progress[value] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 100px;
height: 20px;
}
知道如何制作相同的内容吗?
答案 0 :(得分:2)
progress::-moz-progress-bar { background: green; }
progress {
height: 50px;
padding: 0;
border: none;
}