📜  css 为打印屏幕中的特定 div 添加边距 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:36.007000             🧑  作者: Mango

代码示例1
html, body{
        height: 100%;
        margin: 0;
    }
    .main{
        min-height: 100%;
        position: relative;
    }
    .main-template-footer {
        height: 50px;
        bottom: 0;
        position: absolute;
        width: 100%;
    }
    .main-template-body {
        padding-bottom: 50px;
    }