Link to home
Start Free TrialLog in
Avatar of hankknight
hankknightFlag for Canada

asked on

CSS media type for all except print

Hello,

I understand that there are 7+ media types for CSS.

I want a special stylesheet for print but all other media should use the same stylesheet.

<style type="text/css" media="print">@import "print.css";</style>
<style type="text/css" media="all except print">@import "main.css";</style>
Avatar of R7AF
R7AF
Flag of Netherlands image

I think (but am not 100% sure) that leaving out the media attribute will do what you want.

<style type="text/css" media="print">@import "print.css";</style>
<style type="text/css" >@import "main.css";</style>
Avatar of hankknight

ASKER

Thanks for the idea R7AF but no, your idea loads BOTH style sheets for the print version.
ASKER CERTIFIED SOLUTION
Avatar of R7AF
R7AF
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial