我正在建立一个网站,我遇到了一个问题:
Google Chrome开发人员工具的背景在较低/较高分辨率下延伸。
当我直接从我的手机打开网站时,背景不适合屏幕,只是“剪切”#34;背景。
以下是网站: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;
}
Dunno这里发生了什么。
答案 0 :(得分:0)
在某些浏览器中自动修复CSS可能会出现问题。我注意到你的max-width属性不以分号结尾。由于遇到语法错误,某些浏览器不会显示任何内容。