跳至內容
選單
此問題已被標幟
1 回覆
11879 瀏覽次數

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

頭像
捨棄

Please be specific.

最佳答案

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.

頭像
捨棄

Thanks

相關帖文 回覆 瀏覽次數 活動
0
5月 24
1725
2
5月 24
3429
3
2月 24
2941
2
2月 24
2604
2
11月 22
5767