From e012cfda23a5a9cbc7f513fdd23096643708c159 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Tue, 3 Apr 2012 19:10:33 +0200 Subject: [PATCH 1/1] unicode: support columns in webkit browsers Still a little buggy by default, but can be worked around at least in Chromium 16. --- base.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/base.css b/base.css index 509d646..37a5716 100644 --- a/base.css +++ b/base.css @@ -263,10 +263,14 @@ table.dimap { .diinfo { -moz-column-width: 24em; + -webkit-column-width: 24em; column-width: 24em; } .diinfo > div { overflow: hidden; + column-break-inside: avoid; + -webkit-column-break-inside: avoid; + position: relative; z-index: 1; /* webkit bug */ } /* glyph cell overlay (digraph labels) */ -- 2.30.0