Home > Web Front-end > HTML Tutorial > 魅族手机浏览器兼容性调优最佳实践_html/css_WEB-ITnose

魅族手机浏览器兼容性调优最佳实践_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:33:45
Original
1802 people have browsed it

问题一、非 position:absolute 容器 height:100% 不生效,导致 bottom 定位错位

截图1:容器实际高度渲染为0

 

截图2:

 

节点1 样式中包含了 position:relative ; height:100%; 但在魅族手机浏览器中高度被渲染为0
节点2 定义了 bottom:-140px; 定位出错

解决方案:

1、节点1使用 position:absolute
2、或 height 写死为父容器 高度
3、或 节点2 使用 top 定位,为了兼容ie浏览器尽量使用 top 代替 bottom 也是一条最佳实践

 

问题二、魅族手机浏览器中部分段落文字字号会被自动放大

这个是魅族手机浏览器(优化阅读体验)的特性,当页面的 contentWidth 大于 800px 时会被浏览器视为PC版页面,从而触发该逻辑。
关闭该特性的方法是,在最外层的div节点上加上 class="copyr" ,其节点内所有子节点将关闭自动放大字号的特性。需要注意的是加 body 节点上是无效的。

以下是关闭特性后的效果截图:

 

暂时只发现以上两条,如有其他问题会继续补充,欢迎跟帖反馈:)

 

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template