Guillaume Ayoub
Guillaume Ayoub
Hi! Did you try to set a width, and negative margins on left and right sides of the image? Thatās a common way to get CSS boxes bleeding over page...
Hi! Thanks for the bug report. Python 3.14b2 no-GIL, thatās living on the bleeding edge! The stack trace you reported only mentions Python and [cffi](https://github.com/python-cffi/cffi), so I suppose the bug...
I donāt have the problem anymore with 3.14.0b4. Feel free to add a comment if thereās anything more we can do on this topic!
Thanks a lot for the report. The problem is known for flex, itās now referenced in #2400. Letās keep this issue for this topic. The equivalent problem for grid is...
> * the first two tables are not properly aligned (see antennahouse.pdf as reference) Thatās because of the 8px margin set in the user agent stylesheet (in WeasyPrint, probably in...
Hi! > Will WeasyPrint support the new spec for the 'background-clip' property in the future? That would be a good idea! This value has been added in [Background Level 4](https://drafts.csswg.org/css-backgrounds-4/#background-clip),...
Hi! Thatās because `col-*-*` elements have `position: relative` set. According to the [specification](https://drafts.csswg.org/css-break/#break-between), `break-after` can `break-before` can only be set on "boxes in the normal flow of the fragmentation root",...
Well, it may be more complicated than that, `relative` is not `absolute` or `fixed`, and relative elements are actually in the flow.
Itās actually because itās `float: left`, and we donāt break on floating elements. We should though: "User agents should also apply these properties to floated boxes whose containing block is...
Short sample to reproduce the problem: ```html float end ```