我有一个由PHP中的TCPDF生成的PDF。整个事情看起来很棒,但我不能在生成的表的任何部分增加字体的大小。我的CSS不是很好,但不知道我做错了什么?
CSS:
<style>
}
table.first {
color: #003300;
font-family: helvetica ;
font-size: 8pt;
border-left: 1px solid black;
border-right: 1px solid black;
border-top: 1px solid black;
border-bottom: 1px solid black;
background-color: white;
}
td {
border: 1px solid black;
background-color: white;
}
</style>
HTML:
<table class="first" cellpadding="0" cellspacing="0">
<tr>
<td width="50%"><B>1a.</b> Name of Insurance Plan (<B>OFFICE USE ONLY</b>):
<BR>
<BR><BR>
<BR><B>1b.</b> Insurance I.D. Number (<B>UTAH ONLY</b> - Check with the patient and if they have Utah Medicaid and include the Medicaid I.D. Number.):
<BR><BR><B><span style='font-size: 24pt;'>$medicaidid,</span></b>
<BR><BR><B>1c.</b> Patient Name (Last Name, First Name) & DOB (Typed out, example: January 01, 1901):
<BR><BR><B>$name</b>
<BR><B>$dob</b><BR></td>
<td width="50%"><B>2a.</b><BR> <img src="lilogo.png" style="width:8500%;" height="75">
<BR><B>2b.</b> Appointment Number: <BR><BR> <B>$appid</b></td>
</tr>
</table>
答案 0 :(得分:1)
删除样式标记
下的}这是你的代码:
<style>
}
table.first {
color: #003300;
font-family: helvetica;
请改为尝试:
<style>
table.first {
color: #003300;
font-family: helvetica;
答案 1 :(得分:0)
我不知道你想说什么,但是在jsfiddle.net上没有关于字体大小的问题,例如当我尝试时,
*{
font-size:20px;
}
它运作良好或者如果您有任何其他问题,请明确!