Answers for "css ios media query"

CSS
0

css ios media query

@supports (-webkit-touch-callout: none) {
   /* CSS specific to iOS devices */ 
}

@supports not (-webkit-touch-callout: none) {
   /* CSS for other than iOS devices */ 
}
Posted by: Guest on June-23-2020

Browse Popular Code Answers by Language