• 媒体查询_网页打印样式


    需求:

      客户想要打印网页内容,而打印的数据都是黑白现实的的,不需要其他颜色,需要给客户设置打印样式

    那,如何满足需求?

      设置一个打印媒体查询

    /* 打印样式
       ========================================================================== */
    
    /**
     */
    @media print {
        *,
        *:before,
        *:after {
            background: transparent !important;
            color: #000 !important;
            box-shadow: none !important;
            text-shadow: none !important;
        }
    
        a,
        a:visited {
            text-decoration: underline;
        }
    
        a[href]:after {
            content: " (" attr(href) ")";
        }
    
        abbr[title]:after {
            content: " (" attr(title) ")";
        }
    
        /*使用JavaScript的超链接不打印href*/
        a[href^='#']:after,
        a[href^='javascript:']:after {
            content: '';
        }
    
        pre,
        blockquote {
            border: 1px solid #999;
            page-break-inside: avoid;
        }
    
        thead {
            display: table-header-group;
        }
    
        tr,
        img {
            page-break-inside: avoid;
        }
    
        img {
            max- 100% !important;
        }
    
        p,
        h2,
        h3 {
            /*当标题和文字不分离,3行文字以上带走标题进入下一页*/
            orphans: 3;
            widows: 3;
        }
    
        h2,
        h3 {
            page-break-inside: avoid;
        }
    }
    

      

      

  • 相关阅读:
    二进制编译http
    http服务
    FTP服务
    DAY01
    直流电机调速作业
    机械大楼电梯控制项目
    仿真作业
    第六周作业
    第五周作业
    第四周仿真作业
  • 原文地址:https://www.cnblogs.com/2bjiujiu/p/7474326.html
Copyright © 2020-2023  润新知