小编典典

iOS5中固定工作的后台附加功能?

css

在> iOS 5中可以使用吗?

.element {
    background: url(images/myImage.jpg) 50% 0 no-repeat fixed;
}

我认为应该,但到目前为止还没有。


阅读 288

收藏
2020-05-16

共1个答案

小编典典

您可以使用单独的元素来解决此问题,position: fixed并且确实有效!

HTML:

<div id="Background"></div>

<div id="Content"></div>

CSS:

#Background {
    background: #000 url("img/Background.jpg") no-repeat 50% 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1
}
2020-05-16