通过构建一组彩色笔来学习 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{
  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

挑战的链接:

这个帖子里有提到哦,请在这个部分描述你的问题,以便大家更好地帮助你:

另外,也期待你反馈大家的建议是否有帮助到你通过一道题目:)

1 Like