Search code examples
cssfirefoxwebkit

How to make the mozilla progressbar the same as chrome


I'm using the tag but in mozilla it looks like this: enter image description here

but i want to make it like this: enter image description here

the code im using for the lastone:

progress[value] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100px;
    height: 20px;
}

Any idea how to make then the same?


Solution

  • progress::-moz-progress-bar { background: green; }
    progress {
       height: 50px;
       padding: 0;
       border: none;
    }