2018-09-30 23:01:58 +01:00
---
id: 587d7dbd367417b2b2512bb5
title: Nest CSS with Sass
challengeType: 0
2019-08-05 09:17:33 -07:00
forumTopicId: 301457
2018-09-30 23:01:58 +01:00
---
## Description
< section id = 'description' >
Sass allows < code > nesting< / code > of CSS rules, which is a useful way of organizing a style sheet.
Normally, each element is targeted on a different line to style it, like so:
2019-05-14 05:01:32 -07:00
```scss
nav {
background-color: red;
}
nav ul {
list-style: none;
}
nav ul li {
display: inline-block;
}
```
2018-09-30 23:01:58 +01:00
For a large project, the CSS file will have many lines and rules. This is where < code > nesting< / code > can help organize your code by placing child style rules within the respective parent elements:
2019-05-14 05:01:32 -07:00
```scss
nav {
background-color: red;
ul {
list-style: none;
li {
display: inline-block;
}
}
}
```
2018-09-30 23:01:58 +01:00
< / section >
## Instructions
< section id = 'instructions' >
Use the < code > nesting< / code > technique shown above to re-organize the CSS rules for both children of < code > .blog-post< / code > element. For testing purposes, the < code > h1< / code > should come before the < code > p< / code > element.
< / section >
## Tests
< section id = 'tests' >
```yml
2018-10-04 14:37:37 +01:00
tests:
- text: Your code should re-organize the CSS rules so the < code > h1</ code > and < code > p</ code > are nested in the < code > .blog-post</ code > parent element.
2019-07-24 23:53:37 -07:00
testString: assert(code.match(/\.blog-post\s*?{\s*?h1\s*?{\s*?text-align:\s*?center;\s*?color:\s*?blue;\s*?}\s*?p\s*?{\s*?font-size:\s*?20px;\s*?}\s*?}/gi));
2018-09-30 23:01:58 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'html-seed' >
```html
< style type = 'text/sass' >
.blog-post {
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
}
h1 {
text-align: center;
color: blue;
}
p {
font-size: 20px;
}
< / style >
< div class = "blog-post" >
< h1 > Blog Title< / h1 >
< p > This is a paragraph< / p >
< / div >
```
< / div >
< / section >
## Solution
< section id = 'solution' >
2019-05-01 01:55:22 +02:00
```html
< style type = 'text/sass' >
.blog-post {
h1 {
text-align: center;
color: blue;
}
p {
font-size: 20px;
}
}
< / style >
< div class = "blog-post" >
< h1 > Blog Title< / h1 >
< p > This is a paragraph< / p >
< / div >
2018-09-30 23:01:58 +01:00
```
2019-07-18 08:24:12 -07:00
2018-09-30 23:01:58 +01:00
< / section >