1つのボタンを上に、もう1つのボタンを下に中央揃えしたい。CSSを編集してこれを達成するにはどうすればよいですか
css-
#ContactForm .button {
margin-left:8px;
margin-left:9px;
float:right;
margin-right:2px;
font-size:20px;
font-weight:700;
color:#fff;
line-height:35px;
width:90px;
text-align:center;
background:url(../images/button_form.gif) top repeat-x #308da2;
border-radius:10px;
-moz-border-radius:10px;
-webkit-border-radius:10px;behavior:url(js/PIE.htc);
position:relative;
text-decoration:none
}
html-
<div>
<a href="#" class="button" onclick="document.getElementById('ContactForm').submit()">send</a>
<a href="#" class="button" onclick="document.getElementById('ContactForm').reset()">clear</a>
</div>