Bootstrap.min.css file not called in tcpdf

I designed the invoice using bootstrap css, I used tcpdf to issue the invoice. I called the bootstrap css file, but its not working. Please help me. My coding

$baseurl = "http://localhost/erp";
$html = '<style>'.file_get_contents($baseurl.'css/bootstrap.min.css').'</style>';
$html = '<style>'.file_get_contents($baseurl.'css/style.css').'</style>';
+4
source share
1 answer

First of all, Bootstrapuse jsscripts to work; As you know, the scripts could not work in the file tcpdf,
Moreover tcpdf, all CSS attributes are not allowed; I cannot find a supported css list in the official documentation , but this may help ;

+3
source

Source: https://habr.com/ru/post/1606380/


All Articles