我正在尝试为我的页面制作背景,我希望它出现在中间。但由于某种原因,无论我做什么,它都会显示在左侧。
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>
为什么它在我的原始页面上不起作用?有什么建议吗?
