html - Change print page title font size by CSS -


is possible change font size of header(page title) , footer(page url , pagination) print browser in print css?

actually i've big title in page. want display reducing it's size.

is there way reduce font-size of title can set other property of page ie.

@page {   margin-top: 2cm;   margin-bottom: 2cm;    margin-left: 3cm;    margin-right: 3cm; } 

you can try this:

@media print {     h1 {         font-size: 12pt;     } } 

otherwise can checkout tutorial more information on css media: http://www.tutorialrepublic.com/css-tutorial/css-media-types.php


Comments

Popular posts from this blog

user interface - Python attempting to create a simple gui, getting "AttributeError: 'MainMenu' object has no attribute 'intro_screen'" -

jquery - Common JavaScript snippet to share files on Google Drive, Dropbox, Box.net or SkyDrive -

Android Gson.fromJson error -