CSS参考手册
设备适配 | Device Adaptation
最小变焦 | @viewport.min-zoom
min-zoomCSS的描述符设置通过@viewport定义文档的最小缩放系数。无论是自动还是根据用户要求,浏览器都不会缩放得超出此范围。
一个缩放因子的1.0或100%不对应任何缩放。较大的值会放大。较小的值会缩小。
Related at-rule |
@viewport |
|---|---|
初始值 |
auto |
百分比值 |
the zoom factor itself |
媒体 |
visual, continuous |
计算值 |
auto, or a non-negative number or percentage as specified |
规范顺序 |
the unique non-ambiguous order defined by the formal grammar |
语法
/* Keyword value */
min-zoom: auto;
/* <number> values */
min-zoom: 0.8;
min-zoom: 2.0;
/* <percentage> value */
min-zoom: 150%;
值
auto用户代理将设置文档的上限缩放比例限制。
<number>限制缩放因子最小值的非负数。
<percentage>限制缩放因子最小值的非负百分比。
形式语法
auto | <number> | <percentage>
规范
Specification |
Status |
Comment |
|---|---|---|
CSS Device AdaptationThe definition of '"min-zoom" descriptor' in that specification. |
Working Draft |
Initial definition |
浏览器兼容性
Feature |
Chrome |
Firefox (Gecko) |
Internet Explorer |
Opera |
Safari |
|---|---|---|---|---|---|
Basic support |
? |
? |
? |
? |
? |
Feature |
Android |
Chrome for Android |
Firefox Mobile (Gecko) |
IE Mobile |
Opera Mobile |
Safari Mobile |
|---|---|---|---|---|---|---|
Basic support |
? |
? |
? |
? |
? |
? |
设备适配 | Device Adaptation相关
层叠样式表( Cascading Style Sheets )是一种用来表现 HTML 或 XML 等文件样式的计算机语言。CSS 不仅可以静态地修饰网页,还可以配合各种脚本语言动态地对网页各元素进行格式化。
加载中,请稍侯......