Good morning,
I am trying to generate a pdf file through the DOMPDF library, using html and css.
$dompdf = new Dompdf();
$dompdf->loadHtml(utf8_decode($this->load->view('facturas/factura', $data, true)));
$dompdf->setPaper('A4', 'portrait');
$dompdf->set_option('isHtml5ParserEnabled', true);
$dompdf->render();
$dompdf->stream($FacturaId.'.pdf', array("Attachment" => false));
This is my html: link
The problem is that I receive this: