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
Post a Comment