我正在创建我的投资组合。我希望我的背景图像适合所有分辨率。
现在我有使用css3技巧的代码,但我不想使用css3技巧,因为我希望我的投资组合从ie7开放。
width: 100%!important;
height: 100%!important;
max-width: 100%;
max-height: 100%;
background-position: 100% 100%;
background-repeat: no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-origin: content-box;
display: block;
当我尝试上面的代码时它在缩小屏幕时工作正常,直到某种程度上背景图像适合浏览器窗口,当我减少到更多例如(移动设备大小)图像上升我看到白色空间在底部。
我已经尝试过谷歌和stackoverflow,但我没有得到正确的解决方案。
有人可以帮我解决这个问题。
谢谢&问候 马哈德