-- Robert Neville <[EMAIL PROTECTED]>
wrote:

> I just began developing the print style sheet for my
> web page listed below and have encountered several
> difficulties. Apparently, the scenario is more
> complex
> than originally thought. This  sheet scenario has
> had
> me perplexed for several days.  I simplified the
> html
> and removed the JavaScript, which did not bring much
> insight. 
> 
> http://neville.f2o.org/nifty_DELETE1.html
> 
> Now, the page only has the paragraph and heading
> elements. If the text occupies a page or less,
> Firefox
> renders the print version as expected. If the text
> spans a page or more, then Firefox render the
> #header;
> then a page break; then the text in question; and
> cut
> the text off after a page of so. 

http://neville.f2o.org/nifty_DELETE1.html

Let me follow-up my post in case anybody else
encounters these situations with print style sheets.
The scenario was attributed to the media type in the
html header. The style sheet that preceded the print
sheet needed media="screen." Then the previous styles
do not interfere with the print stylesheet. Now,
everything seems in working order.

ORIGINAL HTML
<link rel="stylesheet" type="text/css"
href="css/niftyLayout.css">
<link rel="stylesheet" type="text/css"
href="css/niftyCorners.css">
<link rel="stylesheet" type="text/css"
href="css/niftyPrint.css" media="print">

CHANGED HTML
<link rel="stylesheet" type="text/css" media="screen"
href="css/niftyLayout.css">
<link rel="stylesheet" type="text/css" media="screen"
href="css/niftyCorners.css">
<link rel="stylesheet" type="text/css" media="print"
href="css/niftyPrint.css">

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to