From dc15c17eb831567ec7b80a63f4ff38ea23e817cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milo=C5=A1=20Gavrilovi=C4=87?= Date: Tue, 11 Feb 2014 18:08:10 +0100 Subject: [PATCH] Remove float from .column on screens <=640px It doesn't make much difference since it has `width: 100%;`, but I needed `
` between columns on <=640px screens, and that `
` is visible only on those screens, removing float allowed me to use margins correctly on `
` element to set some spacing between elements. --- grid.css | 1 + 1 file changed, 1 insertion(+) diff --git a/grid.css b/grid.css index d574955..8073f45 100644 --- a/grid.css +++ b/grid.css @@ -435,6 +435,7 @@ img { .column.one-fourth { margin: 2em 0 0 0; width: 100%; + float: none; } .column:first-child { margin-top: 0; }