封面后背景大小没有缩放

时间:2014-04-25 09:00:02

标签: android html css css3

这将是我的第一个问题,它告诉我新编程。

我有一张背景图片,使用' background-size:cover'或背景大小:100%100%;

这个问题似乎只出现在Android设备上

最小宽度和最小高度不起作用,我遇到了几个有类似问题的人,但他们的解决方案没有帮助

这是我的css

body {

        background-image: url("../img/bck-img.png");
        background-color: transparent !important;
        background-position: center center;
        background-size: 100% 100%;
        -webkit-background-size: 100% 100%;
        -moz-background-size: 100% 100%;
        -o-background-size:100% 100%;
        background-attachment:fixed ;
        background-repeat:no-repeat;
        /*
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size:cover;
        background-attachment:fixed ;
        */
        background-repeat:no-repeat;
        min-height:100%;
        width:100%;
        }   

html{  /*height:100%;*/ min-height:100%; width: 100%;}


#nav1 {
width: 100%;
height:35%;
margin: 0 0 0 0;
position:fixed;
left:0px;
top:0px;}

评论是不同的试错灵魂 感谢

0 个答案:

没有答案