视网膜显示媒体查询

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了视网膜显示媒体查询相关的知识,希望对你有一定的参考价值。

I needed a quick way to target high-resolution graphics. Here was my final solution
  1. /* High Resolution artwork*/
  2. @media
  3. only screen and (-webkit-min-device-pixel-ratio: 2),
  4. only screen and ( min--moz-device-pixel-ratio: 2),
  5. only screen and ( -o-min-device-pixel-ratio: 2/1),
  6. only screen and ( min-device-pixel-ratio: 2),
  7. only screen and ( min-resolution: 192dpi),
  8. only screen and ( min-resolution: 2dppx) {
  9. }

以上是关于视网膜显示媒体查询的主要内容,如果未能解决你的问题,请参考以下文章

嵌套媒体查询

iOS7 忽略视网膜 css 媒体查询 - 背景大小

使用媒体查询内联样式[重复]

了解 Retina 设备 CSS 媒体查询

响应式设计

css 非常有用的媒体查询片段