How to target Galaxy Nexus and Nexus 7 with media queries?

前端 未结 7 1682
难免孤独
难免孤独 2020-12-30 05:58

I have two devices that I\'m testing site design with. Samsung Galaxy Nexus and Asus Nexus 7 tablet. I\'m having a really hard time figuring out how to target these individu

相关标签:
7条回答
  • 2020-12-30 06:28

    Following code worked for me to target Nexus7 tab.

    /** Google Nexus7 (Landscape)**/
    @media screen and (min-device-width : 601px) and (max-device-width :970px) {}
    

    Don't forget to add the meta tag in your html. For example,

    <meta name="viewport" content="width=device-width"/>
    
    0 讨论(0)
提交回复
热议问题