我正在创建一个类似圆圈的网站,需要在中间居中。背景由围绕中心图像的圆圈组成。每当我以全屏方式查看我的网站时(F11快捷方式),无论屏幕分辨率如何,它都会完美居中。
如果我在没有全屏的情况下查看我的网站,我的屏幕分辨率会稍微调整背景,使其不能完全居中。
我的背景是代码:
* {
padding:0; margin:0;
}
html, body {
height:100%;
width: 100%;
display: block;
background-color: #1a1207;
/* add font here */
color: white;
}
body{
background-image:url('../img/background.jpg');
background-position: left;
background-repeat: no-repeat;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
-moz-background-position: fixed;
-o-background-size: cover;
background-size: cover;
}
有什么方法可以解决这个问题吗?
答案 0 :(得分:1)
看不到剩下的代码,但是如果你想让背景居中,你不希望它被设置为:
body{
background-position: center;
}
现在的样子,背景只针对一个分辨率正确居中,因为它与左边对齐。