现在,当您转到此链接时:http ://rawgallery.us/user/login 后台被切断。无论浏览器窗口的分辨率如何,它都应该像这张图片:http ://rawgallery.us/CarlisleBackDropWallRoom.png
我还在学习 CSS,所以我使用了这段代码,它应该覆盖所有的背景,它有效:
html {
background: url("CarlisleBackDropWallRoom.png") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
我的#page 设置如下:
#page {
margin-left: auto;
margin-right: auto;
min-height:960px;
min-width:960px;
max-height:1200px;
max-width:1200px;
}
html 标签会覆盖页面标签吗?
例如,如果浏览器窗口为 500x700 或 1200x1500,有人可以告诉我如何查看整个背景图像吗?
谢谢!