为基于棘轮的应用程序添加背景图像(更确切地说是.content)的推荐方法是什么? ios主题对我来说有点明显..给应用程序提供背景图像是不好的做法吗?
答案 0 :(得分:0)
我这样做了,它在iOS(甚至iPad)和Android上运行良好。
.content {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow: auto;
-webkit-overflow-scrolling: touch;
background-image: url("../img/background-mobile.jpg");
background-position: center top;
z-index: 1
}