我正在尝试在全页 div 容器后进行分页。 就像加载一个介绍性页面一样,如果向下滚动,您可以进入一种导航中心。 我觉得这可能是一个 chrome 问题,但分页符项目在 Edge 中也不起作用。
我想要在
Mein Portfolio.
Entwicklung verteilter Systeme
Webprogrammierung
Vorlesung 1
Vorlesung 2
Vorlesung 3
Vorlesung 4
Vorlesung 5
Vorlesung 6
Vorlesung 7
Verteilte Systeme
.uebersicht {
display: block;
page-break-before: always;
float: none;
}
.pagebreak {
page-break-after: always;
page-break-inside: avoid;
}
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
我希望我理解正确,这个例子会对你有所帮助
试试这个CSS
html, body { width: 100%; height: 100%; margin: 0; } .wrapper { width: 100%; height: 100%; margin: 0; display: flex; flex-direction: column; } .first { width: 100%; background-color: red; flex: 0 0 100%; } .second { width: 100%; background-color: blue; flex: 0 0 100%; }并尝试这个 html