I want to use the power of CSS Flexbox when creating a PDF report. How to apply CSS Flexbox in QWeb?
This question has been flagged
1
Reply
13855
Views
You need to use an older syntax because the reporting system is using QtWebKit 2.3 (it's 10 years old).
.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
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up| Related Posts | Replies | Views | Activity | |
|---|---|---|---|---|
|
|
0
May 24
|
3102 | ||
|
|
2
May 24
|
5582 | ||
|
Sale Order PDF Report
Solved
|
|
3
Feb 24
|
4912 | |
|
|
2
Feb 24
|
3846 | ||
|
|
2
Nov 22
|
7487 |
Please be specific.