Home  >  Article  >  Web Front-end  >  Why Does TCPDF Ignore Inline CSS on PDF?

Why Does TCPDF Ignore Inline CSS on PDF?

Barbara Streisand
Barbara StreisandOriginal
2024-10-24 12:25:31463browse

Why Does TCPDF Ignore Inline CSS on PDF?

Why TCPDF Ignores Inline CSS

Issue:

TCPDF displays a blank page when you attempt to apply inline CSS to HTML content being added to a PDF.

Explanation:

TCPDF has limited CSS support and does not recognize all attributes. Currently, it only supports the following CSS attributes:

  • font-family
  • font-size
  • font-weight
  • font-style
  • color
  • background-color
  • text-decoration
  • width
  • height
  • text-align

Solution:

Remove any unsupported CSS attributes from your HTML content. For example, attributes like position, left, top, and margin are not recognized by TCPDF.

Alternative Libraries:

Consider using alternative PDF generation libraries that offer more comprehensive CSS support:

domPDF:

  • Supports most CSS 2.1 and some CSS3 properties
  • Handles external stylesheets
  • Supports complex tables with individual cell styling

mPDF:

  • Generates visually accurate PDFs with higher CSS compliance than TCPDF
  • Supports both PHP and CLI usage
  • Offers extensive customization options and plugins

Additional Resources:

  • TCPDF Documentation: https://github.com/tecnickcom/tcpdf/wiki
  • domPDF Documentation: https://github.com/dompdf/dompdf/wiki
  • mPDF Documentation: http://mpdf1.com/manual/

The above is the detailed content of Why Does TCPDF Ignore Inline CSS on PDF?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn