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.
有没有办法在 CSS 中将当前页面设置为向左或向右?我能找到的只有page-break-after: left/right. 问题是您不能对文档的第一页执行此操作,否则它将从空白页开始!
page-break-after: left/right
您可以在 html 元素上使用 page-break-before:
html { page-break-before: left }
请参阅规范。如果 Chrome 支持这个,IDK。