2018-09-30 23:01:58 +01:00
---
id: 5a94fe7769fb03452672e463
title: Use Media Queries to Create Responsive Layouts
challengeType: 0
videoUrl: 'https://scrimba.com/p/pByETK/cMbqeHk'
2019-08-05 09:17:33 -07:00
forumTopicId: 301138
2021-01-13 03:31:00 +01:00
dashedName: use-media-queries-to-create-responsive-layouts
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2018-09-30 23:01:58 +01:00
CSS Grid can be an easy way to make your site more responsive by using media queries to rearrange grid areas, change dimensions of a grid, and rearrange the placement of items.
2020-11-27 19:02:05 +01:00
2018-09-30 23:01:58 +01:00
In the preview, when the viewport width is 300px or more, the number of columns changes from 1 to 2. The advertisement area then occupies the left column completely.
2020-11-27 19:02:05 +01:00
# --instructions--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
When the viewport width is `400px` or more, make the header area occupy the top row completely and the footer area occupy the bottom row completely.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --hints--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
When the viewport is `400px` or more, `container` class should have a `grid-template-areas` property in which the header and footer areas occupy the top and bottom rows respectively and advert and content occupy the left and right columns of the middle row.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(
__helpers
.removeCssComments(code)
.match(
/@media \s*?\(\s*?min-width\s*?:\s*?400px\s*?\)[\s\S]*.container\s*?{[\s\S]*grid-template-areas\s*?:\s*?"\s*?header\s*?header\s*?"\s*?"\s*?advert\s*?content\s*?"\s*?"\s*?footer\s*?footer\s*?"\s*?;[\s\S]*}/gi
)
);
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
```html
< style >
.item1 {
background: LightSkyBlue;
grid-area: header;
}
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
.item2 {
background: LightSalmon;
grid-area: advert;
}
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
.item3 {
background: PaleTurquoise;
grid-area: content;
}
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
.item4 {
background: lightpink;
grid-area: footer;
}
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
.container {
font-size: 1.5em;
min-height: 300px;
width: 100%;
background: LightGray;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 50px auto 1fr auto;
grid-gap: 10px;
grid-template-areas:
"header"
"advert"
"content"
"footer";
}
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
@media (min-width: 300px){
.container{
grid-template-columns: auto 1fr;
grid-template-rows: auto 1fr auto;
grid-template-areas:
"advert header"
"advert content"
"advert footer";
}
}
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
@media (min-width: 400px){
.container{
grid-template-areas:
2020-02-27 07:20:46 -08:00
/* Only change code below this line */
2018-09-30 23:01:58 +01:00
"advert header"
"advert content"
"advert footer";
2020-02-27 07:20:46 -08:00
/* Only change code above this line */
2018-09-30 23:01:58 +01:00
}
}
< / style >
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
< div class = "container" >
< div class = "item1" > header< / div >
< div class = "item2" > advert< / div >
< div class = "item3" > content< / div >
< div class = "item4" > footer< / div >
< / div >
```
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
2018-10-23 16:21:53 +03:00
```html
< style >
.item1 {
background: LightSkyBlue;
grid-area: header;
}
.item2 {
background: LightSalmon;
grid-area: advert;
}
.item3 {
background: PaleTurquoise;
grid-area: content;
}
.item4 {
background: lightpink;
grid-area: footer;
}
.container {
font-size: 1.5em;
min-height: 300px;
width: 100%;
background: LightGray;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 50px auto 1fr auto;
grid-gap: 10px;
grid-template-areas:
"header"
"advert"
"content"
"footer";
}
2018-09-30 23:01:58 +01:00
2018-10-23 16:21:53 +03:00
@media (min-width: 300px){
.container{
grid-template-columns: auto 1fr;
grid-template-rows: auto 1fr auto;
grid-template-areas:
"advert header"
"advert content"
"advert footer";
}
}
@media (min-width: 400px){
.container{
grid-template-areas:
"header header"
"advert content"
"footer footer";
}
}
< / style >
< div class = "container" >
< div class = "item1" > header< / div >
< div class = "item2" > advert< / div >
< div class = "item3" > content< / div >
< div class = "item4" > footer< / div >
< / div >
2018-09-30 23:01:58 +01:00
```