vote up 0 vote down star

Which stylesheet will be used when the page is printed from the browser’s print command with the below code?

<link rel="stylesheet” type=”text/css” href=”core.css”>
<link rel=”stylesheet” type=”text/css” media=”screen” href=”comman.css”>
  1. core.css
  2. common.css
  3. core.css + common.css
  4. Varies from browser to browser

Again this question is from a quiz.

flag

72% accept rate
4th option makes me to post this here. I don't have all browser/environment with me. Though I will check with mine & post it – rajakvk Sep 29 at 5:21

2 Answers

vote up 0 vote down

Why not go code this and find out yourself? :/

Edit: Well actually you don't even need to do much. Just download a couple of css stuff, apply them to a page and print via the browser.

link|flag
This should be posted as a comment. – adamantium Sep 29 at 5:17
Oh sorry, new here. How do I delete this? – AKofC Sep 29 at 5:19
4th option makes me to post this here. I don't have all browser/environment with me. Though I will check with mine & post it. – rajakvk Sep 29 at 5:20
Click the delete link at the bottom of your answer. – adamantium Sep 29 at 5:20
I only see link, edit, and flag. :/ – AKofC Sep 29 at 5:27
vote up 0 vote down

I think it would be

Varies from browser to browser

If you need to include a media type for a printable document then you have to use the print media type which is intended for paged material and for documents viewed on screen in print preview mode.

Media type screen is intended primarily for color computer screens.

Since this media type is not specified in any of the style sheet I think the browser setting will decide how to print the data.

For detailed information see

Media Types

link|flag

Your Answer

Get an OpenID
or

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