blob: 192eb4db96224faf72b1b208f5808c8b960bda38 (
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
27
28
29
30
31
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
input, button { min-width: 16em; max-width: 8em; }
.left { text-align: left; }
.right { text-align: right; }
.center { text-align: center; }
</style>
</head>
<body>
<div>
<input type="button" value="input" class="left">
</div>
<div>
<button class="left">button</button>
</div>
<div>
<input type="button" value="input" class="right">
</div>
<div>
<button class="right">button</button>
</div>
<div>
<input type="button" value="input" class="center">
</div>
<div>
<button class="center">button</button>
</div>
</body>
</html>
|