Printable Pages
Want to let people print out a nice web page you have published? Try using the @media function in a CSS file. This will allow you to modify the layout of your page and remove the images when the page is printed.
Here is a sample CSS file with the screen display and print formatting.
Simply use these containers to define the output mode:
@media screen {
@media print {
}
Here is a sample CSS file with the screen display and print formatting.
Simply use these containers to define the output mode:
@media screen {
@media print {
}
Post a Comment