From 8f9dfa677eeaf72bf017b335f09388f9a24c11c2 Mon Sep 17 00:00:00 2001 From: Adam Kaplan Date: Tue, 11 Feb 2014 18:07:43 -0600 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f3d874..ca7e24b 100644 --- a/README.md +++ b/README.md @@ -119,8 +119,9 @@ Add size classes to columns to create a reuseable grid system. width: 21.25%; } ``` + ####6. Create Rows -Columns are wrapped in rows to prevent other elements from stacking next to them, otherwise know as clearing issues. Rows are cleared with either a `clearfix` or `overflow: hidden`. This clearfix was created by Nicolas Gallager. +Columns are wrapped in rows to prevent other elements from stacking next to them, otherwise know as clearing issues. Rows are cleared with either a `clearfix` or `overflow: hidden`. This clearfix was created by [Nicolas Gallager](http://nicolasgallagher.com/micro-clearfix-hack/). ``` .clearfix:before, @@ -158,6 +159,7 @@ Columns are wrapped in rows to prevent other elements from stacking next to them ``` + ####7. Add a Mobile Breakpoint If the browser's screen size is within a set range, a media query will replace the CSS the browser uses. This is the bread and butter of responsive web design.