Reputation: 1
Is there anyway (with CSS only) to target chrome and safari, but not safari on the iphone or ipads?
Upvotes: 0
Views: 335
Reputation: 4761
you can use media queries:
CSS2:
<link rel="stylesheet" media="screen and (min-width: 1024px)" href="desktop.css" type="text/css" />
CSS3:
<link rel="stylesheet" media="screen and not handheld" href="desktop.css" type="text/css" />
Upvotes: 1