HTML CSS examples for CSS Property:font-size
Adjust font size when print
<!doctype html> <html> <head> <style type="text/css"> body {<!-- www.ja va 2s . c o m--> font-size:13pt; } @media print { body { font-size:49pt; } } </style> </head> <body> This is a sample document with normal size text that should print large. </body> </html>