Can I change page layout when using window.print()?

后端 未结 4 1880
无人及你
无人及你 2021-02-20 02:09

In our application we enable users to print pages. We do this by supplying a button which when click calls the window.print() function.
Some of the pages would look better i

相关标签:
4条回答
  • 2021-02-20 02:53

    Unfortunately, this is still not possible cross-browser. For Internet Explorer, there is an ActiveX control that does it.

    Otherwise your best bet might be to offer the option of a PDF version for printing.

    0 讨论(0)
  • 2021-02-20 02:55

    I think your question is not so much about using CSS to define print styles, but to force the print as landscape rather than portrait?

    CSS 2 defined 'size', but I don't think this is widly supported: http://www.w3schools.com/css/css_ref_print.asp

    CSS 3 has better print control, but again not widly supported.

    0 讨论(0)
  • 2021-02-20 03:13

    Do it with CSS by including a print stylesheet thusly:

    <style type="text/css" media="print">@import url("/inc/web.print.css");</style>
    
    0 讨论(0)
  • 2021-02-20 03:16

    You should use a print stylesheet.

    <link rel="stylesheet" href="print.css" type="text/css" media="print" />
    

    More info...

    How to print only parts of a page?

    Edit: to coerce landscape orientation, apparently the standard is size: landscape, but I have no idea how well that's supported across browsers.

    0 讨论(0)
提交回复
热议问题