Search code examples
phphtml2pdf

Center align using html2pdf with lines on both side


<table style="width: 100%;">
        <tr>
            <td style="text-align: center;width=100%;"><h4>Education</h4></td>
        </tr>
</table>

This is the code I am using. Now i want o/p like this:

enter image description here

How can I draw these horizontal lines?


Solution

  • <table style="width: 100%; padding-top:-10px;">
                <tr>
            <td style="text-align: center;width=33%;"><hr style="height: .3mm; background: #000; "></td>
            <td style="text-align: center;width=33%; padding-top:-5px;">
    <h4>Education</h4>
    </td>
    <td style="text-align: center;width=33%;"><hr style="height: .3mm; background: #000; ">     </td>
    </tr>
    </table>
    

    This solved my problem.