<resolution> - CSS(层叠样式表) 编辑
分辨率:用于描述媒体查询中的分辨率的<resolution> CSS数据类型表示输出设备的像素密度。
在屏幕上,单位与CSS英寸,厘米或像素有关,而与物理值无关。
Syntax
<resolution>数据类型由严格为正<number>
组成,后跟下面列出的单位之一。与所有CSS维度一样,单位字面值与数字之间没有空格。
单位
dpi
- 表示每英寸的点数。屏幕通常每英寸包含72或96个点,但打印文档的dpi通常要大得多。 1英寸是2.54厘米,1dpi≈0.39dpcm。
dpcm
- 每厘米上的点数。1英寸是2.54厘米,
1dpcm ≈ 2.54dpi
. dppx
- 表示每个
px
的点数。 由于CSS px的固定比率为1:96,因此1dppx相当于96dpi。 which corresponds to the default resolution of images displayed in CSS as defined byimage-resolution
. x
-
dppx
的别名
Note: Although the number 0
is always the same regardless of unit, the unit may not be omitted. In other words, 0
is invalid and does not represent 0dpi
, 0dpcm
, or 0dppx
.
Examples
Use in a media query
@media print and (min-resolution: 300dpi) { ... }
Valid resolutions
96dpi 50.82dpcm 3dppx
Invalid resolutions
72 dpi Spaces are not allowed between the number and the unit. ten dpi The number must use digits only. 0 The unit is required.
Specifications
Specification | Status | Comment |
---|---|---|
CSS Values and Units Module Level 4 <resolution> | Editor's Draft | Adds the x unit. |
CSS Values and Units Module Level 3 <resolution> | Candidate Recommendation | Adds the dppx unit. |
Media Queries <resolution> | Recommendation | Initial definition. |
Browser compatibility
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.See also
- resolution media feature
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论