transform: translateZ(0)
I don't know if you can add this to styles with columns or not. Perhaps this would be a conditional mixin with less...
There are some browser bugs with translateZ itself (see e.g. http://bugzil.la/1048279 & http://wkbug.com/138162 from https://github.com/twbs/bootstrap/pull/13649#issuecomment-57767763) and it creates a new stacking context (which is often undesirable), so I don't think it's a good general solution.
Browser-specific _rendering_ bugs are outside of the scope of normalizing browsers' _default styles_.
This issue should probably be closed.
@fvsch thanks
In any case someone wondering, you can try fixing this by adding this style to child elements
-webkit-column-break-inside: avoid;
-webkit-backface-visibility: hidden;
In any case someone wondering, you can try fixing this by adding this style to child elements
-webkit-column-break-inside: avoid; -webkit-backface-visibility: hidden;
you just saved my ass man. thanks!
Most helpful comment
In any case someone wondering, you can try fixing this by adding this style to child elements