Reputation: 6649
Here's a sample, which is giving the desired results if viewed with Firefox, but not if viewed with Chrome.
-webkit-appearance: slider-vertical;
- try removing it in the sample and view it in Chrome and the input range becomes horizontal rather than vertical-webkit-appearance: none;
-webkit-appearance
cannot be both slider-vertical
and none
in our non-quantum CSS (see under the [type='range']
selector)Upvotes: 3
Views: 8329
Reputation: 5030
As suggested in this answer, use transform to make the slider vertical, so you can set -webkit-appearance
to none
.
Upvotes: 2