Reputation: 11423
Q:
Is there any way to set default setting to the printer through the code , so that i can imagine union and one layout for all users. this is a web application.
Upvotes: 1
Views: 683
Reputation: 3215
Yes we you can !
Set default styles:
<style media = "print">
@import url("css.css");
</style>
And preferences to the printer:
CSS How-to: Optimize Pages for Printing Using CSS
Upvotes: 1