href要素のテキストをWebkitブラウザー(chrome / safari)の中央に配置しようとしています。
これはhtmlです:
<div>
<a onclick="check(1);" id="check1" class="linkText">center please</a>
</div>
cssは次のとおりです。
.linkText, .linkText:hover
{
margin: 0 auto;
background-image:url(/images/q.png);
width:280px;
height:57px;
background-repeat:no-repeat;
background-color:Transparent;
border:none;
font-size:18px;
font-weight:normal !important;
color:Black !important;
text-shadow: none !important;
display: -webkit-box;
text-align:center;
-webkit-box-align: center;
box-align: center;
}
私が得た結果は、添付の画像に示されています。
何か案は?10倍!