From d4e80ded6b4c0cf77018097bb962aee973a1d4f4 Mon Sep 17 00:00:00 2001 From: Matt Pinkston Date: Mon, 23 Apr 2012 16:26:56 -0500 Subject: [PATCH] Added max-width: 100%; to columns to keep them constrained within parents. (for example: to prevent right-aligned text from overlapping the edge of the parent 'container') --- stylesheets/skeleton.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stylesheets/skeleton.css b/stylesheets/skeleton.css index f36de83..93a9aa3 100644 --- a/stylesheets/skeleton.css +++ b/stylesheets/skeleton.css @@ -23,7 +23,7 @@ .container { position: relative; width: 960px; margin: 0 auto; padding: 0; } .container .column, - .container .columns { float: left; display: inline; margin-left: 10px; margin-right: 10px; } + .container .columns { float: left; display: inline; margin-left: 10px; margin-right: 10px; max-width: 100%; } .row { margin-bottom: 20px; } /* Nested Column Classes */