[Javascript] Link Style Pages

Roger Roelofs rer at datacompusa.com
Fri Feb 23 07:16:37 CST 2007


Del,

On Feb 23, 2007, at 7:19 AM, Del Wegener wrote:

> I have web pages that are to be read on the computer screen ( and  
> printed ) by my students.
> I use these same pages during my classes.  In this application I  
> project them on a screen.
> The problem is that type is too small when projected.
>
> I can fix that problem by using two different style sheets -- one  
> for normal computer screen  viewing
> <link href="../../style_sheet_trigonometry_normal_pages.css"  
> rel="stylesheet" type="text/css">
>
> and one for projection (the principle difference is font size)
> <link href="../../style_sheet_trigonometry_projection_pages.css"  
> rel="stylesheet" type="text/css">
>
> However, the only way I know how to implement this is to have two  
> different
> links to two different pages whose only difference is that single  
> line in
> the header of the page.

http://www.w3.org/TR/REC-CSS2/media.html

<link href="../../style_sheet_trigonometry_projection_pages.css"
	rel="stylesheet" type="text/css"
	media="projection">

<link href="../../style_sheet_trigonometry_normal_pages.css"
	rel="stylesheet" type="text/css"
	media="screen, print">

Roger
-------------------------------------------------------
Roger Roelofs                          web   www.datacompusa.com
Datacomp Appraisal Services   Email rer at datacompusa.com
3215 Eaglecrest Drive, NE
Grand Rapids, MI  49525-4593





More information about the Javascript mailing list