How to make a HTML Page in A4 paper size page(s)?

前端 未结 15 1799
有刺的猬
有刺的猬 2020-11-22 16:30

Is it possible to make a HTML page behave, for example, like a A4-sized page in MS Word?

Essentially, I want to be able to show the HTML page in the browser, and out

15条回答
  •  囚心锁ツ
    2020-11-22 17:20

    A4 size is 210x297mm

    So you can set the HTML page to fit those sizes with CSS:

    html,body{
        height:297mm;
        width:210mm;
    }
    

提交回复
热议问题