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

前端 未结 15 1773
有刺的猬
有刺的猬 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:27

    Many ways to do:

    html,body{
        height:297mm;
        width:210mm;
    }
    
    
    html,body{
        height:29.7cm;
        width:21cm;
    }
    
    html,body{
        height: 842px;
        width: 595px;
    }
    

提交回复
热议问题