Print Scale To Some % Like 50% By Using Css For Ie9,10,11
Zoom css property not working for IE9,10,11. Observed while print preview UI disturbing and the default scale is Shrink to fit. When i changed this scale from Shrink to fit to 50%
Solution 1:
<styletype="text/css"media="print">body {width: 200%;height: 200%;margin: -50% -50%;}
</style>
After adding above print CSS for page, it is working as expected in IE (somewhat better).
For Edge, I added the following code for scaling:
<styletype="text/css"media="print">body {zoom: 50%;}
</style>
Post a Comment for "Print Scale To Some % Like 50% By Using Css For Ie9,10,11"