summaryrefslogtreecommitdiff
path: root/works/form-element-size.html
blob: 1f8548dc1a4273ce43794ebdc3168c7683f3b02d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
<body>

<p>Form elements should respect min. font size.</p>

<form>

<div style="font-size:20%; padding:2em;">
<input type="text" size="50">
</div>

<div style="font-size:30%; padding:2em;">
<input type="radio" name="foo" CHECKED> A<br>
<input type="radio" name="foo"> B
</div>

</form>

</body>
</html>