From d631c773b5bc20eafbec02bcb94f96a34c8c738f Mon Sep 17 00:00:00 2001 From: Jamal Carvalho Date: Thu, 24 Sep 2020 17:29:18 -0400 Subject: [PATCH] Updated CSSStyleGuide (markdown) --- CSSStyleGuide.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CSSStyleGuide.md b/CSSStyleGuide.md index a9c03c86..30f4146a 100644 --- a/CSSStyleGuide.md +++ b/CSSStyleGuide.md @@ -208,4 +208,13 @@ Wrong: /* Sequence of simple selectors. */ button.foo.bar { ... -} \ No newline at end of file +} +``` + +## Images + +Add height and width attributes to images in the html markup to help minimize layout shift during page load. + +``` + +```