Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
11881 Lượt xem

I want to use the power of CSS Flexbox when creating a PDF report. How to apply CSS Flexbox in QWeb? 

Ảnh đại diện
Huỷ bỏ

Please be specific.

Câu trả lời hay nhất

You need to use an older syntax because the reporting system is using QtWebKit 2.3 (it's 10 years old).

Source

.foo {
    display: -webkit-box; /* wkhtmltopdf uses this one */
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center; /* wkhtmltopdf uses this one */
    -webkit-justify-content: center;
            justify-content: center;
}

There should be a way to use the new syntax on Odoo but I can't help you, if you find a solution let me know.

Ảnh đại diện
Huỷ bỏ

Thanks

Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 5 24
1726
2
thg 5 24
3429
3
thg 2 24
2945
2
thg 2 24
2607
2
thg 11 22
5787