Print+CSS

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • gudipati
    New Member
    • Oct 2007
    • 21

    #1

    Print+CSS

    hi to all

    how to use media="Print" in style sheets.pl give me some information on this egards.

    thank u
  • TAL651
    New Member
    • Sep 2007
    • 20

    #2
    Originally posted by gudipati
    hi to all

    how to use media="Print" in style sheets.pl give me some information on this egards.

    thank u
    When you are creating your stylesheets, be sure to include a value for media. For instance, say that you had two stylesheets, one for the web and one for print. Your link to these stylesheets would look like this:

    <link rel="stylesheet " type="text/css" href="screen.cs s" media="screen" />

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

    Comment

    Working...