I'm trying to set up a simple two column layout using CSS3's columns but when I try and span an image across both columns, I'm getting some weird spacing issues.
If you look at this stupidly specific jsFiddle, you'll see that each time I have one of those "feature" images that spans both columns, I get this large gap above the image on both columns at most viewport widths (not counting the assumed blank space left by varied heights of images).
I'm using just the most basic of CSS3 here (prefixes not shown):
section {
column-count: 2;
column-gap: 10px;
}
.feature {
column-span: all;
}
Any ideas?