我正在建设一个网站,我坚持一个问题:背景延伸谷歌Chrome开发工具,以较低/更高的分辨率。当我从手机直接打开网站的时候,背景不适合屏幕,它只是“剪”了背景。
这是一个网站:https://feargames.emilianomaccaferri.me删除如果垃圾邮件
下面是我的背景css:
body {
background: url(../assets/bg.png);
max-width:none
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-color:#464646;
font-family: 'Lato', sans-serif;
}不知道这是怎么回事。
发布于 2016-01-03 05:33:09
在某些浏览器中自动修复CSS可能是个问题。我注意到你的最大宽度属性并没有以分号结尾。由于遇到语法错误,一些浏览器在运行后不会显示任何内容。
https://stackoverflow.com/questions/34572869
复制相似问题