📜  css ios 媒体查询 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:47.188000             🧑  作者: Mango

代码示例1
@supports (-webkit-touch-callout: none) {
   /* CSS specific to iOS devices */ 
}

@supports not (-webkit-touch-callout: none) {
   /* CSS for other than iOS devices */ 
}