平板电脑无法完全显示背景图片

时间:2018-06-28 10:20:07

标签: html css image ipad tablet

我的背景图像仅显示在内容块内(屏幕截图),仅供参考,我对内容有一点动画(fadeIn),但除此之外没有其他特殊之处。

这是我的CSS:

.template_home { 
background: url("../Images/bg_home.jpg") no-repeat top center; 
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover; 
min-width: 100%;
min-height: 100%; 
color: #292a2c;
position: relative; 
overflow: hidden; 
}

关于如何解决此问题的任何想法?!

enter image description here

2 个答案:

答案 0 :(得分:0)

尝试使用

height: 100%
margin: 0 auto;
background-position: center;

答案 1 :(得分:0)

尝试删除

overflow: hidden;

请参阅本教程会为您提供帮助

  

https://css-tricks.com/perfect-full-page-background-image/