From 6a8b3e217458df87079e4489e232a4bdd3445eef Mon Sep 17 00:00:00 2001 From: "Samuel Morales, Jr" Date: Fri, 23 Aug 2019 18:05:59 -0400 Subject: [PATCH] Fixing typos "tamplate" -> "template" I noticed three areas where the guide had the misspelling "tamplate." --- css-grid.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/css-grid.md b/css-grid.md index 7a0a24a00..dd44ab00e 100644 --- a/css-grid.md +++ b/css-grid.md @@ -39,7 +39,7 @@ prism_languages: [css] ```css /* Areas */ - grid-tamplate-areas: + grid-template-areas: "header header" "main aside" "footer footer"; /* Grid-style */ @@ -58,7 +58,7 @@ prism_languages: [css] /* The above is the same as below long-hand */ grid-template-columns: 80% 20%; grid-template-rows: auto 100vh 10rem; - grid-tamplate-areas: + grid-template-areas: "header header" "main aside" "footer footer"; @@ -155,7 +155,7 @@ prism_languages: [css] / 80% 20%; /* Which is again equivalent to below */ grid-template-columns: 80% 20%; grid-template-rows: auto 100vh 10rem; - grid-tamplate-areas: + grid-template-areas: "header header" "main aside" "footer footer"; @@ -252,4 +252,4 @@ prism_languages: [css] * [GRID: A simple visual cheatsheet](http://grid.malven.co/) * [CSS Tricks: A Complete Guide to Grid](https://css-tricks.com/snippets/css/complete-guide-grid/) * [Browser support](https://caniuse.com/#feat=css-grid) - \ No newline at end of file +