Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    .third_cols_table tbody tr td:nth-child(1) {
      color: red;
    };
    .third_cols_table tbody tr td:nth-child(2) {
      color: aqua;
    };
    .third_cols_table tbody tr td:nth-child(3) {
      color: blue;
    };
  </style>
</head>
<body>
  <div>
    <table class="third_cols_table">
    <tr>
      <td>名称</td>
      <td>数量</td>
      <td>单价</td>
    </tr>
  </table>
  </div>
</body>
</html>

就第一个td 变红,其他td没反应,我真的没明白到底为啥??????


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

有可能是因为你在花括号后面加了分号

.third_cols_table tbody tr td:nth-child(1) {
  color: red;
}
.third_cols_table tbody tr td:nth-child(2) {
  color: aqua;
}
.third_cols_table tbody tr td:nth-child(3) {
  color: blue;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...