html - dompdf: how to remove borders from the rendered table in pdf? -


I'm having problems displaying table with dompdf:

The table has all the limits I do not have html in my original table:

How can I remove the final limitations from PDF documents?

Thanks

Try one of the following in your stylesheet:

  table {border-fall: collapse; }  

-or -

  table {boundary-difference: 0 pixels; }  

-or -

  table {border-style: start; }  

When you use the boundary attribute, DOMPDF separates per cell boundaries. However, DOMPDF looks different from most web browsers without supplying a border limit on the table. DOMPDF will allow the closest web browser to use one of these style announcements.


Comments