asp.net mvc 3 areas - How to fix the size of the div to print on a4 size paper? -
i have div of size 400*400px. wrote function print follows
function callprint(strid) { var prtcontent = document.getelementbyid(strid); var winprint = window.open('', '', 'left=0,top=0,width=400px,height=400px,toolbar=0,scrollbars=0,status=0'); winprint.document.write(prtcontent.innerhtml); winprint.document.close(); winprint.focus(); winprint.print(); }
this prints content on whole a4 size paper. how can fix size of hard copy printout.
i think want print stylesheet. http://www.webcredible.co.uk/user-friendly-resources/css/print-stylesheet.shtml
Comments
Post a Comment