You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an HTML document I'm trying to convert to PDF using WeasyPrint. The HTML version makes heavy use of CSS grid styles, and when trying to do the conversion, I get a bunch of warnings about the grid styles being ignored, because of "unknown property" errors.
WARNING: Ignored `display: grid` at 84:3, invalid value.
WARNING: Ignored `grid-column-gap: 1em` at 85:3, unknown property.
WARNING: Ignored `grid-template-columns: 1fr 1fr 1.5fr` at 86:3, unknown property.
WARNING: Ignored `grid-column: 1/4` at 92:3, unknown property.
WARNING: Ignored `display: grid` at 156:3, invalid value.
WARNING: Ignored `grid-gap: 0.5em` at 157:3, unknown property.
WARNING: Ignored `grid-template-columns: 1fr 1fr` at 158:3, unknown property.
WARNING: Ignored `grid-column: 1` at 168:3, unknown property.
WARNING: Ignored `grid-row: 2` at 169:3, unknown property.
[...]
I could be wrong, but I guess this is because tinycss2 doesn't support grid styles yet?
The text was updated successfully, but these errors were encountered:
I have an HTML document I'm trying to convert to PDF using WeasyPrint. The HTML version makes heavy use of CSS grid styles, and when trying to do the conversion, I get a bunch of warnings about the grid styles being ignored, because of "unknown property" errors.
I could be wrong, but I guess this is because tinycss2 doesn't support grid styles yet?
The text was updated successfully, but these errors were encountered: