Workaround for css3 multi-column image bug in webkit?
There's a开发者_StackOverflow known bug in webkit, where it cut's up images that happen to span multiple columns. Firefox gets it right and I don't care about IE as doesn't know how to render multiple columns at all and degrades gracefully to one big column instead.
Does anyone know of any decent workarounds for this issue that doesn't involve banning images in columns?
Try [style="position: relative"] on the affected image/s.
I had the same problem and an old school solotion to it.
I added a couple of:
<p> </p>
at the end of the Text and could change the "fold" to my favor. Not nice, bit it works
精彩评论