Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经搜索了很多关于 Ipad mini 的 CSS 特定媒体查询并找到了这个页面。这说明 Ipad Mini 在 162 ppi 中有 7.9。如何在 CSS 媒体查询中应用此属性。请帮忙
iPad mini 将只继承与原始 iPad 相同的视口大小。但为了更精确,您可以定位 iPad mini 的像素密度,因此:
/* ipad Mini Portrait */ @media only screen and (width:768px) and (resolution: 163dpi) { } /* ipad Mini Landscape */ @media only screen and (width:1024px) and (resolution: 163dpi) { }