How to generate PDF from HTML with CSS bootstrap classes

40,612

You can try something like this:

http://codecanyon.net/item/awesome-conversion-script/6462891

or

http://www.sitepoint.com/convert-html-to-pdf-with-dompdf/

Share:
40,612
felipe muner
Author by

felipe muner

Updated on August 02, 2020

Comments

  • felipe muner
    felipe muner almost 4 years

    I have a table with classes bootstrap3 css and I want to generate a PDF from this table...

    What is the best way to do this?

    I need that keep my style css My table:

            <table id="tabelaVisitaSickbay" class="table table-striped table-hover table-bordered">
                <tbody>
                <tr>
                    <th colspan="2">Visits to the SickBay</th>
                </tr>
                <tr>
                    <td>Botafogo Pre-Nursery and Nursery</td>
                    <td id="visitaBotaPrenurseryAndNursery" class="atendimentoVisitSickBay"></td>                   
                </tr>
            </tbody>
    

    Thanks for help & pointers in advance.