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

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -