vote up 1 vote down star

This is a question brought up in a local user group mailing list at dot.net.nz ...

I when I create an XHTML page old-fashioned way, I used to use the following syntax for my CSS declarations:

<link rel=”stylesheet” type=”text/css” media=”screen” href=”css/screen.css” />

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

Now, since I code using ASP.NET 2.0 and beyond; I fell in love with the Themes. However, I don’t know how to do the same thing using Themes.

flag

52% accept rate

2 Answers

vote up 3 vote down check

You should define media in the CSS file:

@media print
{
    p
    {
        ...
    }

    ...put styles here.
}
link|flag
So then I would have a screen.css which encapsulates the style within @media screen { ... } and a printer.css when encapsulates the styles within @media print { ... } I guess that makes sense. – BlackMael Nov 30 '08 at 19:39
vote up 1 vote down

You can declare the media type inside the stylesheets. For example, printer.css:

@media print
{
    /* Print CSS rules here */
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.