相关疑难解决方法(0)

使用ios7修复了背景图像

我有一个项目,我正在使用固定的背景图像.它适用于除ios7之外的所有功能.在ipad上,背景图像被放大并且模糊.这是我正在使用的CSS代码 -

.header {
  display: table;
  height: 100%;
  width: 100%;
  position: relative;
  color: #fff;
  background: url(../images/boston2.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  }
Run Code Online (Sandbox Code Playgroud)

这是实时页面的链接 - www.wdeanmedical.com

我错过了什么?

css background cover ios7

38
推荐指数
7
解决办法
8万
查看次数

标签 统计

background ×1

cover ×1

css ×1

ios7 ×1