From 74eb72c06b493ad0822b384a36a2a73875b63aa5 Mon Sep 17 00:00:00 2001 From: Rob Date: Sun, 22 Dec 2019 16:13:26 -0800 Subject: [PATCH] Update comments on box-sizing to include a reference to https://css-tricks.com/box-sizing/ --- sscaffold.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sscaffold.css b/sscaffold.css index 988b707..df7761c 100644 --- a/sscaffold.css +++ b/sscaffold.css @@ -9,7 +9,7 @@ *, *:after, *:before { - /* Set default box sizing for all elements. [2] */ + /* Set universal box sizing with inheritance. [3] */ box-sizing: inherit; } @@ -19,7 +19,7 @@ html { line-height: 1.15; /* Prevent adjustments of font size after orientation changes in iOS. [1] */ -webkit-text-size-adjust: 100%; - /* Set a default box sizing. [2] */ + /* Set universal box sizing with inheritance. [3] */ box-sizing: border-box; } @@ -994,5 +994,6 @@ legend.inline { * * [1] normalize.css, https://github.com/necolas/normalize.css/ * [2] milligram.css, https://github.com/milligram/milligram/ +* [3] https://css-tricks.com/box-sizing/ * ******************************************************************************/