Adjusting line-height (or font-size, as recommended elsewhere) might remove Chrome's clipping bug, but only accidentally. If you want to avoid it programmatically, the only working solution by now is:
.multicolumn p {
display: inline-block;
}
You might expand this to all child elements of the multicolumn container, but probably you will need to add width: 100%;
at some point. For more info, read the discussion at
http://www.symphonious.net/2010/12/30/controlling-wrapping-in-css3-columns/
and
http://zomigi.com/blog/deal-breaker-problems-with-css3-multi-columns/.
Furthermore, if the inline-block workaround does not help, the cause for cutting off text bits can consist of a recursive application of multi-column design. I observed this in a more complex scenario than the above where a remote parent of a multi-column text container had its own column layout. Removing the column-count from the top-level container fixed the column-break problems.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…