summaryrefslogtreecommitdiff
path: root/legacy/works/button-width.html
blob: fd517da6d19eeb2c215936a8708da6f2c4418ed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
<head>
<title>Button Width</title>
</head>
<body style="background-color: #00f; color: #fff;">

<p style="background-color: #008; padding: 4px;">The following buttons should have the same widths. The second button has <code>margin: 10px</code>, while the first has no margin set.</p>

<form method="get" action="http://www.smoothartist.com/netsurf/test/">

<input type="submit" value="Go!" style="padding: 2px;">

<input type="submit" value="Go!" style="padding: 2px; margin: 10px;">

</form>

</body>
</html>