我正在为我 3 岁患有白血病的儿子整理一份小联系表。我想用它,这样人们就可以给他发鼓励信,我们可以把它们打印出来挂在他的房间里。我已经让表单工作并使用 DOMpdf 发布数据。我的问题是,我试图用作“固定”的背景图像拒绝扩大到 100%,并且无论我在图形软件中制作的尺寸如何,它都无法正常工作。对我所缺少的任何帮助表示赞赏。代码如下。例如,参见:http ://bebrave.me/#contact
<head>
<style>
body { background-image: url(http://www.bebrave.me/test.jpg); background-position: top left; background-repeat: no-repeat;
background-size: 100%;
margin-top:300px;
width:612px;
height:792px;
}
</style>
</head>
<body>
<table width="500px" border="0" align="center" cellpadding="0" cellspacing="0" id="Table">
<tr>
<td align="left">Dear Joshua,<br />
<?php echo $post->Message; ?></td>
</tr>
<tr>
<td align="right">Be Brave!<br />
-<?php echo $post->Name; ?></td></tr>
</table>
</body>