ページの背景を作ろうとしていますが、真ん中に表示させたいです。しかし、なんらかの理由で、何をしても左側に表示されます。
body
{
font-family:Tahoma, Geneva, sans-serif;
font-size:12px;
color:#696969;
text-align:center;
min-width:320px;
background:url(../images/background.jpg) center no-repeat;
position:relative;
-webkit-text-size-adjust: none;
}
別のファイルを作成しましたが、次のコードで真ん中に表示されました。
<style>
body{
background:url('background.jpg') center no-repeat;
}
</style>
元のページで機能しないのはなぜですか? なにか提案を?