通过构建一组彩色笔来学习 CSS 颜色 - 步骤 21

告诉我们发生了什么:
在此详细描述你的问题。步骤21中所示需要用一个新的CSS规则,不过我不明白该怎么编写

你目前的代码

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Colored Markers</title>
    <link rel="stylesheet" href="styles.css">
  </head>
  <body>
    <h1>CSS Color Markers</h1>
    <div class="container">
      <div class="marker one">
      </div>
      <div class="marker two">
      </div>
      <div class="marker three">
      </div>
    </div>
  </body>
</html>
/* file: styles.css */
h1 {
  text-align: center;
}


/* User Editable Region */

container {
  rgh(0,0,0)
  background-color:black;
}

/* User Editable Region */


.marker {
  width: 200px;
  height: 25px;
  margin: 10px auto;
}

.one {
  background-color: red;
}

.two {
  background-color: green;
}

.three {
  background-color: blue;
}

你的浏览器信息:

用户代理是: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36

Challenge: 通过构建一组彩色笔来学习 CSS 颜色 - 步骤 21

挑战的链接:

你看看题目中已有的选中某个类的 CSS 规则是怎么写的,比如这个规则,就是在 marker 前面加一个点,然后在 {} 中写规则。

题目要求将背景色设置为黑色,那个 rgb(0, 0, 0) 就是黑色,就是把 background-color 属性值设置为 rgb(0, 0, 0)

.container {
  background-color: rgb(0, 0, 0);
}