代码之家  ›  专栏  ›  技术社区  ›  Pro-Web

视网膜显示媒体查询在css中的应用

  •  0
  • Pro-Web  · 技术社区  · 7 年前

    我已经在普通的1440px上创建了一个web应用程序。现在我必须按照规范转换为视网膜显示器2880px。因为我已经把它下放了。什么是容易和最好的做法呢?我试过这样的东西

    @media only screen and (min-width : 2800px){
    body.checkout-cart-index  input#s_method_flatrate {
        width: 22px;
        height: 12px;
    }
    }
    

    但我现在知道视网膜是不同的。所以我试过了 https://css-tricks.com/snippets/css/retina-display-media-query/ 但到目前为止我没有帮上忙。也许我用错了?

    1 回复  |  直到 7 年前
        1
  •  0
  •   Georgy    7 年前

    这对你没有帮助?

    @media
    only screen and (-webkit-min-device-pixel-ratio: 2),
    only screen and (   min--moz-device-pixel-ratio: 2),
    only screen and (     -o-min-device-pixel-ratio: 2/1),
    only screen and (        min-device-pixel-ratio: 2),
    only screen and (                min-resolution: 192dpi),
    only screen and (                min-resolution: 2dppx) { 
    
      /* Retina-specific stuff here */
    
    }