作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这可能是一个简单的问题,但无论页面上方和下方的元素如何 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/
我是一名优秀的程序员,十分优秀!