0

我有一个由 TCPDF 在 php 中生成的 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>&nbsp;&nbsp;&nbsp;<img src="lilogo.png" style="width:8500%;" height="75">
                                <BR><B>2b.</b> Appointment Number: <BR><BR>        <B>$appid</b></td>

     </tr>
   </table>
4

2 回答 2

1

删除样式标签下的 }

这是你的代码:

<style>
       }
       table.first {
           color: #003300;
           font-family: helvetica;

试试这个:

<style>
       table.first {
           color: #003300;
           font-family: helvetica;
于 2013-11-04T15:46:28.970 回答
0

我不知道你想说什么,但是在 jsfiddle.net 上没有关于字体大小的问题,例如当我尝试时,

*{
    font-size:20px;
}

它运作良好,或者如果您有任何其他问题,请明确!

于 2013-11-04T15:56:44.760 回答