|
CodeAve.com - CSS - Miscellaneous | |||
|
|
|||
| Media Type | ||||
|
|
||||
<html> <head> <title>CodeAve.com/CSS - Media Types</title> <style type="text/css"> <!-- /* @media screen defines the CSS that will display as browser output */ @media screen { body {color: #FF0000} } /* @media print defines the CSS that will display as printer output */ @media print { body {color: #000000} } /* @media screen, print defines CSS characteristics that will display as browser output and printer output in this case the text within the body tags will be displayed as italic */ @media screen,print { body {font-style: italic } } --> </style> </head> <body bgcolor="#FFFFFF"> Four score and seven years ago our fathers brought forth on this continent a new nation, conceived in liberty and dedicated to the proposition that all men are created equal. Now we are engaged in a great civil war, testing whether that nation or any nation so conceived and so dedicated can long endure. </body> </html>
|
||||
|
|
||||