CSS3 Column-span Spacing Issue -
i'm trying set simple 2 column layout using css3's columns when try , span image across both columns, i'm getting weird spacing issues.
if @ this stupidly specific jsfiddle, you'll see each time have 1 of "feature" images spans both columns, large gap above image on both columns @ viewport widths (not counting assumed blank space left varied heights of images).
i'm using basic of css3 here (prefixes not shown):
section { column-count: 2; column-gap: 10px; } .feature { column-span: all; }
any ideas?
Comments
Post a Comment