16 lines
354 B
HTML
16 lines
354 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
input[orient="horizontal"]::-moz-range-track {
|
|
background-color: green;
|
|
block-size: 0.2em;
|
|
inline-size: 100%;
|
|
}
|
|
input[orient="vertical"]::-moz-range-track {
|
|
background-color: green;
|
|
inline-size: 0.2em;
|
|
block-size: 100%;
|
|
}
|
|
</style>
|
|
<input type="range" orient="horizontal">
|
|
<input type="range" orient="vertical">
|