背景图片不适用于野生动物园

时间:2017-07-28 13:05:45

标签: css safari

我是编程新手,我为朋友创建了我的第一个网站。 www.goalstars.be但显然登陆页面的背景图片没有尝试解决这里发布的解决方案,但似乎没有解决它。我在墙上挣扎着。我想我在某个地方犯了一个大错。 希望有人可以帮助我。提前谢谢

这是我用于标题的css代码

localhost

2 个答案:

答案 0 :(得分:1)

我遇到了与Safari相同的问题,所以我删除了负面的z-index ,这对我有用

答案 1 :(得分:0)

尝试下面的css代码

<style type="text/css">
header {
    background:url("img/landing.jpg") no-repeat scroll right top #000000;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size:cover;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    border-bottom: solid 1px #00AB1C;
    z-index: -1;
}
</style>