Parf-Edhellen
Parf-Edhellen copied to clipboard
Fix blockquote breakage in the dictionary view
Blockquotes gets split up into multiple columns in Firefox. This does not look good. At all. Fix it with the following CSS on the blockquote element within the dictionary context:
page-break-inside: avoid; /* Theoretically FF 20+ */
break-inside: avoid-column; /* Chrome, Safari, IE 11 */
display:table; /* Actually FF 20+ */
