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