0

如何在没有 css 定位的情况下设置背景图像以适应屏幕大小?我在做功课,我想设置背景图像,但我的教授说我不能使用定位,所以还有其他方法吗?

4

1 回答 1

2

尝试这个

html{
    background:url('backgroundimage.jpg') no-repeat center center;
    min-height:100%;
    min-width:100%;
    background-size:cover;
}

body{

    min-height:100%;/*hack for some mobile browsers */
    min-width:100%;
}

参考链接

于 2012-12-03T16:05:52.000 回答