copenndthagen
copenndthagen

Reputation: 50742

conditional @import and @media - CSS

How to write a condtional CSS import for both desktop and iPad..

E.g. Following is an import for screen/print condtional import

@import url('/css/screen.css') screen;
@import url('/css/print.css') print; 

Could you please tell how to write similar statement for iPad Safari? I mean specifically the media part..

Upvotes: 2

Views: 1193

Answers (1)

BoltClock
BoltClock

Reputation: 724132

There is no media query that is specially satisfiable only by Mobile Safari.

Upvotes: 3

Related Questions