如何在没有css定位的情况下设置背景图像以适应屏幕尺寸?

时间:2012-12-03 15:51:50

标签: css image

如何在没有css定位的情况下设置背景图像以适应屏幕尺寸?我正在做学校工作,我想设置一个背景图片,但我的教授说我不能使用定位,所以有另一种方法吗?

1 个答案:

答案 0 :(得分: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%;
}

reference link