Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为 iPad 创建一个应用程序,例如 iBook。我已经在其中加载了一个 ePub 文件,一切正常。
我已经为 webview 页面编写了 CSS。以下是我获取分页符的代码
<span style="page-break-after: always" />
我已经加载了一张图片,以及它下面的一些文字。在图像之后我想要分页符,并且我希望将图像移动到下一页,但是分页符代码不起作用。我不确定我的代码行是否正确。
添加这样的样式定义怎么样?
<style type="text/css"> img.pagebreak {page-break-before: always;} ... </style> ... <body> ... <img style="pagebreak" ...> ...