Fixing typos "tamplate" -> "template"

I noticed three areas where the guide had the misspelling "tamplate."
This commit is contained in:
Samuel Morales, Jr 2019-08-23 18:05:59 -04:00 committed by GitHub
parent 090d42f103
commit 6a8b3e2174
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@ prism_languages: [css]
```css ```css
/* Areas */ /* Areas */
grid-tamplate-areas: grid-template-areas:
"header header" "header header"
"main aside" "main aside"
"footer footer"; /* Grid-style */ "footer footer"; /* Grid-style */
@ -58,7 +58,7 @@ prism_languages: [css]
/* The above is the same as below long-hand */ /* The above is the same as below long-hand */
grid-template-columns: 80% 20%; grid-template-columns: 80% 20%;
grid-template-rows: auto 100vh 10rem; grid-template-rows: auto 100vh 10rem;
grid-tamplate-areas: grid-template-areas:
"header header" "header header"
"main aside" "main aside"
"footer footer"; "footer footer";
@ -155,7 +155,7 @@ prism_languages: [css]
/ 80% 20%; /* Which is again equivalent to below */ / 80% 20%; /* Which is again equivalent to below */
grid-template-columns: 80% 20%; grid-template-columns: 80% 20%;
grid-template-rows: auto 100vh 10rem; grid-template-rows: auto 100vh 10rem;
grid-tamplate-areas: grid-template-areas:
"header header" "header header"
"main aside" "main aside"
"footer footer"; "footer footer";
@ -252,4 +252,4 @@ prism_languages: [css]
* [GRID: A simple visual cheatsheet](http://grid.malven.co/) * [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/) * [CSS Tricks: A Complete Guide to Grid](https://css-tricks.com/snippets/css/complete-guide-grid/)
* [Browser support](https://caniuse.com/#feat=css-grid) * [Browser support](https://caniuse.com/#feat=css-grid)