blob: c3d2c5564cca9c8d2545bf5a396d5664206c1b8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
input {
-moz-appearance: none;
}
</style>
</head>
<body>
<input value='142'><br>
<input value='142'><br>
<input value='142'><br>
<input value='142'><br>
<input value='142'><br>
<form>
<input value='142'>
</form>
<!-- div to cover spin box area for type=number to type=text comparison -->
<div style="display:block; position:absolute; background-color:black; width:200px; height:400px; top:0px; left:100px;">
</body>
</html>
|