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

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -