我不知道如何做背景扩展并将居中
现在我有这样的东西:
body {
background: url(tlo.jpg) no-repeat;
background-attachment: fixed;
background-position: center;
}
它居中并且具有恒定的大小....
我希望它会按比例扩大......
我需要保持比例
谢谢!
好的,我有解决方案!:)
body {
background-image: url(tlo.jpg);
background-repeat: no-repeat;
background-size: 100% auto;
background-position: center center;
}