blob: f73be677a3e2c0fd5e5ab5fc98e0bf70377feaf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<meta charset="utf-8">
<style>
input {
appearance: none;
height: 5px;
outline: 2px solid black;
}
</style>
<input type="number">
<!-- div to cover spin box area for type=number to type=text comparison -->
<div style="position:absolute; background-color:black; width:200px; height:100px; top:0px; left:100px;">
|