freeCodeCamp/curriculum/challenges/chinese/03-front-end-libraries/sass/nest-css-with-sass.chinese.md

2.1 KiB
Raw Blame History

id title required challengeType videoUrl localeTitle
587d7dbd367417b2b2512bb5 Nest CSS with Sass
src raw
https://cdnjs.cloudflare.com/ajax/libs/sass.js/0.10.9/sass.sync.min.js true
0 使用Sass嵌套CSS

Description

Sass允许nesting CSS规则这是组织样式表的有用方法。通常每个元素都定位在不同的行上以对其进行样式设置如下所示
nav {
背景颜色:红色;
}

nav ul {
list-stylenone;
}

nav ul li {
displayinline-block;
}
对于大型项目CSS文件将包含许多行和规则。这是nesting可以通过在相应的父元素中放置子样式规则来帮助组织代码的地方:
nav {
背景颜色:红色;

ul {
list-stylenone;

li {
displayinline-block;
}
}
}

Instructions

使用上面显示的nesting技术为.blog-post元素的两个子元素重新组织CSS规则。出于测试目的 h1应该位于p元素之前。

Tests

tests:
  - text: 您的代码应该重新组织CSS规则以便<code>h1</code>和<code>p</code>嵌套在<code>.blog-post</code>父元素中。
    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), "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.");'

Challenge Seed

<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>

Solution

// solution required