From cf73433db1532cd2eb1424fe1ed2e31503531c82 Mon Sep 17 00:00:00 2001 From: jpostdesign Date: Sat, 21 Dec 2013 21:38:39 -0800 Subject: [PATCH] Added wildcard box-sizing to CSS --- css/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/css/style.css b/css/style.css index 1aca9be..8cb74c0 100644 --- a/css/style.css +++ b/css/style.css @@ -68,6 +68,12 @@ td { vertical-align: top; } Author: Jonathan Verrecchia =================================================== */ +* { + -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ + -moz-box-sizing: border-box; /* Firefox, other Gecko */ + box-sizing: border-box; /* Opera/IE 8+ */ +} + body{ font:16px/24px Helvetica, Helvetica Neue, Arial, sans-serif; } .wrapper{