blob: b0e3211c65fea429c14acf776e414dd2bc0f46e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!doctype html>
<style>
.foo input[type="range"]::-moz-range-thumb:hover {
color: red;
}
</style>
<div>
<input type="range"></input>
</div>
<script>
onload = function() {
document.querySelector('div').classList.add('foo');
}
</script>
|