bzbarsky%mit.edu 86cec6e69c Adding test.
git-svn-id: svn://10.0.0.236/trunk@246109 18797224-902f-48f8-a5cc-f745e15eee43
2008-02-20 19:55:22 +00:00

32 lines
697 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
input, button { width: 8em; min-width: 16em; }
.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>