mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-10 02:18:57 +00:00
28 lines
444 B
HTML
28 lines
444 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
|
|
input {
|
|
border: 3px solid black;
|
|
padding: 4px;
|
|
width: 300px;
|
|
height: 300px;
|
|
max-height: 100px;
|
|
box-sizing: content-box;
|
|
/* hide the spin buttons: */
|
|
-moz-appearance: textfield;
|
|
}
|
|
|
|
* > input[type=number] {
|
|
/* get rid of background gradient for Firefox OS */
|
|
background-color: transparent ! important;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<input type="number">
|
|
</body>
|
|
</html>
|