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

告诉我们发生了什么:
在此详细描述你的问题。
不知道这个代码该怎么样编写

你目前的代码

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

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

挑战的链接:

你这里输入 container {} 思路是对的,但是前面需要加一个点号,才是 container 类的正确写法。另外,注意是 rgb,你写成 rgh 了。把 rgb 的值设置为 rgb(0, 0, 0),就是黑色的意思,不需要再用 black。

正确的写法是:

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