在IE中打印页面时出现问题。
我有两段。
<p style="width: 25.5pt; text-align: right; font-weight: bold; margin-left: 0px;"> [1] </p>
<p style="height: 1%; text-indent: 0px; margin-top: 0px; margin-bottom: -12pt; position: relative; top: -12pt;"> This is the text that i do not see </p>
在我的网站上,这就是它的外观
[1]这是我看不到的文字
当我打印时,这是页面底部的最后一段,只显示第一段,第二段也不显示在下一页。
对不起,如果我不是很清楚。请帮忙。
答案 0 :(得分:1)
你指定:
<p style="...position: relative; top: -12pt;">This is the text that i do not see </p>
所以基本上,段落在你打印的页面上方12pt(16px)。
您需要定义一个相对父元素,段落将位于top: -12pt;
处。