I am hoping someone can assist me. I have 3 links to style sheets set up within my html documents, 2 of which are media type "screen" and one that is "print". Whenever I try to do a print preview OR print the page in IE, it crashes. However, if I remove "screen" from the two screen based style sheet links, and leave the "print" media type, the print preview works fine, but my layout is, of course, incorrect. Can anyone assist me? Is there a browser bug in IE for Windows that is causing this?
This works (but the page layout is a mess):
<link href="css/style1.css" rel="stylesheet" type="text/css" />
<link href="css/style2.css" rel="stylesheet" type="text/css" />
<link href="css/print.css" rel="stylesheet" media="print" type="text/css" />
This crashes the IE on Windows browser:
<link href="css/style1.css" rel="stylesheet" media="screen" type="text/css" />
<link href="css/style2.css" rel="stylesheet" media="screen" type="text/css" />
<link href="css/print.css" rel="stylesheet" media="print" type="text/css" />
I appreciate any help someone can provide on this.
This works (but the page layout is a mess):
<link href="css/style1.css" rel="stylesheet" type="text/css" />
<link href="css/style2.css" rel="stylesheet" type="text/css" />
<link href="css/print.css" rel="stylesheet" media="print" type="text/css" />
This crashes the IE on Windows browser:
<link href="css/style1.css" rel="stylesheet" media="screen" type="text/css" />
<link href="css/style2.css" rel="stylesheet" media="screen" type="text/css" />
<link href="css/print.css" rel="stylesheet" media="print" type="text/css" />
I appreciate any help someone can provide on this.



