我使用CSS打印样式表为打印时的页面元素提供另一种样式,并隐藏我们不希望打印的样式。
当页面在浏览器中预览(用IE8测试)时,它会溢出到第二个页面上,即使所有的元素似乎都适合在一个页面上。
要防止这种情况,并将页面保留在单个打印页上,必须更改打印样式表中的哪些内容?我试着设置显示:没有底部的大多数面板,但页面仍被分成两部分。
另外,如何防止页面周围的边框和页码的显示?
CSS样式表
/* Specify class for items that should not print */
.noprint
{
display: none;
}
/* Ensure the content
public class AbsoluteValue {
public static int absolute(int n) {
if ( n >= 0){
return n;
}else {
n = n * -1;
return n;
}
}
public static void main(String[] args) {
StdOut.println("Enter the integer that you want t