zoukankan      html  css  js  c++  java
  • 黄聪:wkhtmltopdf解决分页问题

    wkhtmltopdf 有个很好的方法,就是在那个div的样式后添加一个:page-break-inside:avoid;就ok了。

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>pdf</title>
    <link href="css/style.css" rel="stylesheet" type="text/css" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    </head>
    <style type="text/css">
    *{ margin:0px; padding:0px;}
    div{ width:800px; min-height:1362px;margin:auto;page-break-inside:avoid;}
    </style>
    <body>
    <div style=" background:#030"></div>
    <div style=" background:#033"></div>
    <div style=" background:#369"></div>
    <div style=" background:#F60"></div>
    <div style=" background:#F3C"></div>
    <div style=" background:#F0F"></div>
    <div style=" background:#0FF"></div>
    <div style=" background:#FF0"></div>
    <div style=" background:#00F"></div>
    <div style=" background:#0F0"></div>
    <div style=" background:#033"></div>
    <div style=" background:#369"></div>
    <div style=" background:#F60"></div>
    <div style=" background:#030"></div>
    <div style=" background:#033"></div>
    <div style=" background:#369"></div>
    <div style=" background:#F60"></div>
    <div style=" background:#F3C"></div>
    <div style=" background:#F0F"></div>
    <div style=" background:#0FF"></div>
    <div style=" background:#FF0"></div>
    <div style=" background:#00F"></div>
    <div style=" background:#0F0"></div>
    </body>
    </html>
  • 相关阅读:
    windows7修改双系统启动项名称、先后顺序、等待时间
    windows初始化后做了哪些事情
    我的wordpress插件总结
    分析MySQL慢日志(转)
    在Java中使用Memcached(转)
    memcached应用场景(转)
    memcached简介(转)
    Linux下memcache的安装和启动(转)
    列式数据库
    Android测试(一):在Android中测试App
  • 原文地址:https://www.cnblogs.com/huangcong/p/5526316.html
Copyright © 2011-2022 走看看