CSS
这是我的代码。 http://furkan.brove.net/syflm.php
当我打印它时,它不适用于Chrome。 我希望它在打印模式下的每一页上都放置页眉和页脚。 同样在每个浏览器中,最后一个页脚都在内容的底部。 但我希望它成为页面的底部。
有什么方法可以解决我的问题吗?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
<meta name="robots" content="noindex, nofollow">
<meta name="googlebot" content="noindex">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<title>Brove.NET ISO Yazılımı</title>
<link rel="stylesheet" type="text/css" href="css/pagination.css" />
<style>
#all thead { display: table-header-group; }
#all tfoot { display: table-footer-group; }
.header_table{ height:100px; }
.footer_table{ height:100px; }
</style>
</head>
<body>
<table id="all">
<thead><tr><td><table class="header_table"><tr><td>Your header goes here</td></tr></table></td></tr></thead>
<tfoot><tr><td><table class="footer_table"><tr><td>Your footer goes here</td></tr></table></td></tr></tfoot>
<tbody>
<tr><td>
Page body in here -- as long as it needs to be<br />
<!-- i wrote this many -->
</td></tr>
</tbody>
</table>
</body>
</html>
这是IE截图。 在第二页中,它将页眉和页脚放置得很好。
这是Firefox的截图。 它也在工作。
但在铬中它不起作用
不幸的是,这是Webkit的一个已知问题。
在Chrome问题跟踪器中:http://code.google.com/p/chromium/issues/detail?id=24826
Webkit问题跟踪器:https://bugs.webkit.org/show_bug.cgi?id = 17205
如果你想表明它对你很重要(我做过),请在Chrome问题跟踪器中对其进行标注。
链接地址: http://www.djcxy.com/p/57267.html上一篇: css