chore: update lang tags on code blocks

This commit is contained in:
Oliver Eyton-Williams
2020-07-13 18:58:50 +02:00
committed by Mrugesh Mohapatra
parent 120bb342e8
commit d7dc1acb4a
113 changed files with 227 additions and 216 deletions

View File

@ -82,8 +82,8 @@ tests:
<section id='solution'>
```js
var code = ".container {grid-template-columns: 100px 100px 100px;}"
```html
<style>.container {grid-template-columns: 100px 100px 100px;}</style>
```
</section>

View File

@ -74,8 +74,8 @@ tests:
<section id='solution'>
```js
var code = ".container {grid-gap: 10px 20px;}"
```html
<style>.container {grid-gap: 10px 20px;}</style>
```
</section>

View File

@ -73,8 +73,8 @@ tests:
<section id='solution'>
```js
var code = ".container {grid-template-rows: 50px 50px;}"
```html
<style>.container {grid-template-rows: 50px 50px;}</style>
```
</section>

View File

@ -76,8 +76,8 @@ tests:
<section id='solution'>
```js
var code = ".container {justify-items: center;}"
```html
<style>.container {justify-items: center;}</style>
```
</section>

View File

@ -76,8 +76,8 @@ tests:
<section id='solution'>
```js
var code = ".container {align-items: end;}"
```html
<style>.container {align-items: end;}</style>
```
</section>

View File

@ -83,8 +83,8 @@ tests:
<section id='solution'>
```js
var code = ".item2 {justify-self: center;}"
```html
<style>.item2 {justify-self: center;}</style>
```
</section>

View File

@ -80,8 +80,8 @@ tests:
<section id='solution'>
```js
var code = ".item3 {align-self: end;}"
```html
<style>.item3 {align-self: end;}</style>
```
</section>

View File

@ -81,8 +81,8 @@ tests:
<section id='solution'>
```js
var code = ".container {grid-column-gap: 20px;}"
```html
<style>.container {grid-column-gap: 20px;}</style>
```
</section>

View File

@ -75,8 +75,8 @@ tests:
<section id='solution'>
```js
var code = ".container {grid-row-gap: 5px;}"
```html
<style>.container {grid-row-gap: 5px;}</style>
```
</section>

View File

@ -95,8 +95,8 @@ tests:
<section id='solution'>
```js
var code = ".container {grid-template-columns: repeat( auto-fill, minmax(60px, 1fr));} .container2 {grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));}"
```html
<style>.container {grid-template-columns: repeat( auto-fill, minmax(60px, 1fr));} .container2 {grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));}</style>
```
</section>

View File

@ -107,8 +107,8 @@ tests:
<section id='solution'>
```js
var code = ".item3 {grid-template-columns: auto 1fr; display: grid;}"
```html
<style>.item3 {grid-template-columns: auto 1fr; display: grid;}</style>
```
</section>

View File

@ -72,8 +72,8 @@ tests:
<section id='solution'>
```js
var code = ".container {display: grid;}"
```html
<style>.container {display: grid;}</style>
```
</section>

View File

@ -82,8 +82,8 @@ tests:
<section id='solution'>
```js
var code = ".container {grid-template-columns: repeat(3, minmax(90px, 1fr));}"
```html
<style>.container {grid-template-columns: repeat(3, minmax(90px, 1fr));}</style>
```
</section>

View File

@ -91,8 +91,8 @@ tests:
<section id='solution'>
```js
var code = ".item5 {grid-area: footer;}"
```html
<style>.item5 {grid-area: footer;}</style>
```
</section>

View File

@ -96,8 +96,8 @@ tests:
<section id='solution'>
```js
var code = ".container {grid-template-columns: repeat(3, 1fr);}"
```html
<style>.container {grid-template-columns: repeat(3, 1fr);}</style>
```
</section>

View File

@ -84,8 +84,8 @@ tests:
<section id='solution'>
```js
var code = ".container {grid-template-columns: 1fr 100px 2fr;}"
```html
<style>.container {grid-template-columns: 1fr 100px 2fr;}</style>
```
</section>

View File

@ -91,8 +91,8 @@ tests:
<section id='solution'>
```js
var code = ".item5 {grid-area: 3/1/4/4;}"
```html
<style>.item5 {grid-area: 3/1/4/4;}</style>
```
</section>