送信ボタンのスタイルを設定しましたが、中央に配置したいと考えています。CSSは次のとおりです。
.outer {
text-align: center;
}
/* BUTTONS */
.buttons button{
cursor: pointer;
cursor: hand;
border: 0;
height: 28px;
float: left;
text-indent: 4px;
text-decoration:none;
font-weight: bold;
text-transform: uppercase;
font-size: 1.2em;
background: url(../images/button.png);
}
.buttons span{ /* Right-hand corner */
cursor: pointer;
cursor: hand;
display: block;
width: 5px;
height: 28px;
float: left;
background: url(../images/button.png) top right;
}
html は次のとおりです。
<div class="outer">
<div class="buttons">
<button type="submit">SUBMIT</button><span></span>
</div>
</div>
このコードをhttp://www.scottking.com.au/blog/2009/03/custom-styled-css-html-input-buttons/#.Uc2IYdjcAixからコピーしました
これまでのところ、このボタンを中央揃えにすることはできませんでした。