Rotativa.AspNetCore icon indicating copy to clipboard operation
Rotativa.AspNetCore copied to clipboard

Bootstrap v5.2 does not work at all

Open Calltronics opened this issue 2 years ago • 1 comments

Is there any chance of getting this to work?

Calltronics avatar Sep 28 '22 16:09 Calltronics

This is not a Rotativa problem, but related to wkhtmltopdf.

To get the grid to work, you might try this workaround:

<style>
    .row {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
    }

        .row > div {
            -webkit-box-flex: 1;
            -webkit-flex: 1;
        }
</style>

Without the workaround: image

With the workaround: image

ArjanKw avatar Aug 18 '24 20:08 ArjanKw