joshosbrn/jekyons

feature block arrangement

gwijthoff opened this issue · 2 comments

Any idea why the front page feature blocks fail to line up in order if you list more than six features in features.yml? The blocks arrange themselves with gaps. See for instance: https://gwijthoff.github.io/jekyons-test/

This may have something to do with the tachyons clearfix in index.html but I'm not sure.

That's because you're using floats to lay things down and the second item on that list is taller than the third (and this is what's supposed to happen with floats). You could set their height explicitly or use flexbox to fix that.

Beautiful, thanks friend!