固定div内にラップされた値に応じて、さまざまな幅の送信ボタンまたは通常のボタンがあります。margin: 0 auto;
これで、プロパティdisplay:block;
がなくなった後でも、ボタンが div の中央に配置されなくなりました。width
各ボタンの幅を明示的に設定せずにそれらを中央に配置するにはどうすればよいですか?
input[type="submit"], .button {
border: none;
outline: none;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
color: white;
display: block;
cursor: pointer;
margin: 0 auto !important;
clear: both;
padding: 5px 7px;
text-shadow: 0 1px 1px #777;
font-weight: bold;
font-family: "Century Gothic", Helvetica, sans-serif;
font-size: 14px;
-moz-box-shadow: 0px 0px 3px #aaa;
-webkit-box-shadow: 0px 0px 3px #aaa;
box-shadow: 0px 0px 3px #aaa;
background: #4797ED;
}