Me gustaría pasar el código de una web a PDF, pero conservando su estilo. Lo se hacer sin conservar su estilo CSS, por eso quiero perfeccionarlo.
¿Sabéis como conseguir para que respete el CSS? lo he probado metiendo en el misma web el CSS pero no hace caso.
Utilizo la librería HTML2PDF
http://sourceforge.net/projects/html2fpdf/
HTML
Código html:
Ver original
<html> <head> <style> table, th, td { border: 1px solid #D4E0EE; border-collapse: collapse; font-family: "Trebuchet MS", Arial, sans-serif; color: #555; } h2 { font-family: "Trebuchet MS", Arial, sans-serif; color: #555; } caption { font-size: 150%; font-weight: bold; margin: 5px; } td, th { padding: 7px; } thead th { text-align: center; background: #E6EDF5; color: #4F76A3; font-size: 100% !important; } tbody th { font-weight: bold; } tbody tr { background: #FCFDFE; } tbody tr.odd { background: #F7F9FC; } table a:link { color: #718ABE; text-decoration: none; } table a:visited { color: #718ABE; text-decoration: none; } table a:hover { color: #718ABE; text-decoration: underline !important; } tfoot th, tfoot td { font-size: 85%; } </style> </head> <body bgcolor="FFFFFF"> <table> <thead> </thead> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> </table> </body> </html>
SCRIPT
Código PHP:
Ver original
Gracias de antemano!