gpt4 book ai didi

html - DIV 分页符(不打印)

转载 作者:行者123 更新时间:2023-11-28 13:03:52 25 4
gpt4 key购买 nike

这可能是一个简单的问题,但无论页面上方和下方的元素如何 float 或定位,使用 div 以逻辑方式垂直拆分页面的最佳方式是什么。用于在网络上查看,而不是打印时的分页符。

我正在尝试类似的方法,但它不起作用:

<div id="top block" style="width: margin-left: auto; margin-right: auto; clear: both">
<div id="left" style="float: left; width: 200px">
<p>Text text text</p>
</div>
<div id="center" style="float: left; width: 500px;">
Image
</div>
<div id="right" style="float: left; width: 200px">
<p>Text text text</p>
</div>
</div> <!--End of top block-->

<div id="page break" style="width: 1000px; clear: both;"></div> <!--I want this to be a hard break where everything after it appears below-->

<div id="bottom block" style="text-align: center">
<p>Text text text</p> <!--Things from this paragraph are popping up above the forced page break depending on how I align things.-->
</div>

最佳答案

我没有遇到你的问题。顺便说一下,您不需要为“break”div 指定宽度,您可以尝试:

<div id="page break" style="clear: both; display:block;"></div>

here is a Fiddle我为 div 着色是为了让您更好地了解他的行为。

关于html - DIV 分页符(不打印),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15981974/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com