Landscape printing from HTML

前端 未结 16 2123
被撕碎了的回忆
被撕碎了的回忆 2020-11-22 06:31

I have a HTML report, which needs to be printed landscape because of the many columns. It there a way to do this, without the user having to change the document settings?

16条回答
  •  野的像风
    2020-11-22 06:59

    You can also use the non-standard IE-only css attribute writing-mode

    div.page    { 
       writing-mode: tb-rl;
    }
    

提交回复
热议问题