1

我正在使用 java 脚本从 html 页面中打印选定区域。我使用 @MEDIA print { .. 隐藏页面中的所有标题、按钮和图像。它被隐藏了,但仍然存在空白空间。如何对齐打印内容以从页面顶部打印..

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<style type="text/css">
@MEDIA print {
    #top_part{
    visibility:hidden;
    }
    #print{
    margin-top: 5px;
        }
    }
    </style>
</head>
<body>
<div id="top_part">
<button onclick="window.print();">print</button>
hello <br/>
<br/><br/><br/><br/><br/>
test if the printer avoids this content
<br/>

打印这个..

</body>
</html>

在代码中,div top_part 包含我需要隐藏的按钮和文本,它隐藏了,但是我如何从打印的顶角对齐可打印区域

4

1 回答 1

1

尝试

@MEDIA print {

#top_part{
display:none;
}
于 2013-08-25T20:36:47.737 回答