In this example, the value of a <range>
tag is written to an <output>
tag:
Can the value of the <range>
tag be written to the CSS :before
value of the same <range>
tag?
input[type="range"]:before {
content: <insert value here>
}
Resorting to JavaScript is acceptable if necessary.