css - Safari column rendering bug -


safari 7 , 8 seem render title of elements in right column of site (https://unindented.org/) incorrectly:

titles in right column rendered incorrectly

i'm doing following on container:

-webkit-column-count: 2;    -moz-column-count: 2;         column-count: 2; -webkit-column-width: auto;    -moz-column-width: auto;         column-width: auto; 

is there workaround bug?

you've got 2 options here:

  1. remove overflow: hidden header element.
  2. remove border-radius property header

i wish tell why these work. safari's implementation of webkit bad ie @ times.


Comments

Popular posts from this blog

javascript - How to synchronize the Three.js and HTML/SVG coordinate systems (especially w.r.t. the y-axis)? -

javascript - How do I find how many occurences are there of a highlighted string, and which occurence is it? -

java - Reading data from multiple zip files and combining them to one -