blob: 02380ae7edf8ca1b7afdb23723a4c041755c0b20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - input-button</title>
<style>
#container { width: 500px; }
input[type=button] {
appearance: none;
}
</style>
<div id="container">
<input type="button" value="input-button">
</div>
|