在()页面上打印页面不完整时,我遇到问题。
html,css,javascript
如何打印页面(高度100%,宽度100%)?
我需要您的帮助来解决这个问题
<html dir="rtl">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">
@page {
size: A4 landscape;
}
@media print {
body,
html,
#wrapper {
width: 100%;
}
}
body,
html {
width: 100%;
}
</style>
</head>
<body onload="window.print()">
<div style="position:absolute;top:0px;width:1100px;height:750px;border-style:outset;overflow:hidden">
</div>
</body>
</html>