gpt4 book ai didi

php - 使用 HTML 和 CSS 打印页面时如何在第二页上显示相同的边距?

转载 作者:行者123 更新时间:2023-11-28 00:50:47 27 4
gpt4 key购买 nike

这是我的代码。当我打印此页时,第一张纸上的标题和名称正常,但第二张纸上的标题显示不正确。有没有其他技术可以做到这一点?

<html>
<head>
<style>
.my-header {
background: #e3dcf9;
height: 40px;
top: 0;
left: 0;
position: fixed;
right: 0;
}
thead { display:table-header-group }
</style>
</head>

<body>
<div class="my-header">This is header</div>
<div style="margin-top:100px;position: relative;">
<table border="1" >
<thead>
<tr>
<th>Number</th>
<th>Name</th>
</tr>
</thead>
<tbody>
<?php
for($i=1;$i<=150;$i++)
{
?>

<tr>
<td><?php echo $i;?></td>
<td>Content</td>
</tr>


<?php
}
?>
</tbody>
</table>
</div>
</body>
</html>

最佳答案

邮件和打印模板不支持内部 css 和外部 css。使用内联 css 以获得正确的结果。不要使用内部或外部 css。

关于php - 使用 HTML 和 CSS 打印页面时如何在第二页上显示相同的边距?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47570774/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com