2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
id: 587d7dbd367417b2b2512bb5
|
|
|
|
|
title: Nest CSS with Sass
|
|
|
|
|
challengeType: 0
|
2020-09-07 16:11:08 +08:00
|
|
|
|
forumTopicId: 301457
|
|
|
|
|
localeTitle: 用 Sass 嵌套 CSS
|
2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Description
|
2020-09-07 16:11:08 +08:00
|
|
|
|
<section id='description'>
|
|
|
|
|
Sass 允许 CSS 规则的<code>嵌套</code>,这在写样式表的时候会很有用。
|
|
|
|
|
在 CSS 里,每个元素的样式都需要写在独立的代码块中,如下所示:
|
|
|
|
|
|
|
|
|
|
```scss
|
|
|
|
|
nav {
|
|
|
|
|
background-color: red;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav ul {
|
|
|
|
|
list-style: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav ul li {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
对于一个大型项目,CSS 规则会很复杂。这时,引入<code>嵌套</code>功能(即在对应的父元素中写子元素的样式)可以有效地简化代码:
|
|
|
|
|
|
|
|
|
|
```scss
|
|
|
|
|
nav {
|
|
|
|
|
background-color: red;
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
</section>
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
|
|
## Instructions
|
2020-09-07 16:11:08 +08:00
|
|
|
|
<section id='instructions'>
|
|
|
|
|
根据上面关于嵌套的例子,来简化<code>.blog-post<code>中两个子元素的 CSS 代码。出于测试目的,<code>h1</code>应该出现在<code>p</code>元素之前。
|
|
|
|
|
</section>
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
|
|
## Tests
|
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
|
|
```yml
|
|
|
|
|
tests:
|
2020-09-07 16:11:08 +08:00
|
|
|
|
- text: 你应重新组织 CSS 规则,以便<code>h1</code>和<code>p</code>嵌套在<code>.blog-post</code>父元素中。
|
2020-02-18 01:40:55 +09: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-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
## Challenge Seed
|
|
|
|
|
<section id='challengeSeed'>
|
|
|
|
|
|
|
|
|
|
<div id='html-seed'>
|
|
|
|
|
|
|
|
|
|
```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>
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
## Solution
|
|
|
|
|
<section id='solution'>
|
|
|
|
|
|
2020-09-07 16:11:08 +08: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-10-10 18:03:03 -04:00
|
|
|
|
```
|
2020-08-13 17:24:35 +02:00
|
|
|
|
|
2020-09-07 16:11:08 +08:00
|
|
|
|
</section>
|