移动web开发笔记

1. fixed:

基本上,手机浏览器对于background-position:fixed属性都不怎么感冒,iPhone Safari浏览器以及WP7上的IE9浏览器都是如此。

因此,我们要想在页面上实现效果较好的background-position:fixed效果,基本上只能这样:

html, body { height: 100%; overflow: hidden; }

 

2. iOS (iPhone和iPad)的css设置:

#content{
  -webkit-touch-callout: none; /* 防止拷贝图片 */
  -webkit-user-select: none; /*防止用户选择元素内容 */
}
原文地址:https://www.cnblogs.com/langtao/p/3267344.html