【问题标题】:CSS3 :nth-child(odd) Selector neither selecting columns nor rowsCSS3 :nth-child(odd) 选择器既不选择列也不选择行
【发布时间】:2017-02-09 05:40:11
【问题描述】:

我有一个简单的表格,使用 tr:nth-child(odd) 来替代表格中行的背景。

HTML

/*-----------#602 SAO Styles-----------------------------*/

/*---------SAO Global------------*/

.sao-pricing-table table {
  border-collapse: collapse;
  width: 80%;
  margin: 0 auto;
  background: #ffffff;
}
.sao-pricing-table table td {
  height: 20px;
}
table.sao-table {
  border-collapse: collapse;
}
/*-----Basic Title Cells---------*/

.sao-top-1 {
  border: 0px;
  background: #FFFFFF;
  height: 40px;
  width: 40%;
}
.sao-top-2 {
  font-size: 16px;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
  border: 0px solid #a8b5b9;
  background-color: #003869;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  height: 40px;
  width: 30%;
}
.sao-top-2-title {
  font-size: 110%;
}
.sao-top-2-type {
  font-size: 120%;
}
.sao-top-2-price {
  font-size: 100%;
}
/*------Gold Title Cells------*/

.sao-top-3 {
  font-size: 16px;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
  border: 0px solid #a8b5b9;
  background-color: #F2A405;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  height: ;
  width: 30%;
}
.sao-top-3-title {
  font-size: 110%;
}
.sao-top-3-type {
  font-size: 130%;
}
.sao-top-3-price {
  font-size: 100%;
}
/*----Regular Cells-----*/

#sao-table table {
  border-collapse: collapse;
  width: 100%;
}
th,
td {
  padding: 0.25rem;
  text-align: center !important;
  border: 1px solid #ccc;
  height: 20%;
}
tr.sao-zebra:nth-child(odd) {
  background: #23282D !important;
}
.sao-feature {
  text-align: left !important;
}
/* Checkmark Style-----*/

.sao-checkmark {
  font-size: 125%;
  color: #F2A405;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.2);
}
<div class="sao-pricing-table">
  <table class="sao-table">
    <thead>
      <tr>
        <th class="sao-top-1">
        </th>
        <th class="sao-top-2">
          <span class="sao-top-2-title">Some Text</span>
          <span class="sao-top-2-type">More Text</span>
          <span class="sao-top-2-price">Even More Text</span>
        </th>
        <th class="sao-top-3">
          <span class="sao-top-3-title">Some Text</span>
          <span class="sao-top-3-type">More Text</span>
          <span class="sao-top-3-price">Even More Text</span>
        </th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <th class="sao-feature">Text</th>
        <td class="sao-detail">Text</td>
        <td class="sao-detail">Text</td>
      </tr>
      <tr>
        <th class="sao-feature">Text</th>
        <td class="sao-detail">Text</td>
        <td class="sao-detail">Text</td>
      </tr>

目前,该表有 3 列。 nth-child 伪选择器导致每隔一列变为黑色,而不是每隔一行。我做错了什么?编辑:建议的行跨度示例不包括第 n 个子选择器,所以我看不出它是如何相同的。有人可以填我吗?

【问题讨论】:

  • 打错了,:nth-child前面有一个空格
  • @dippas 你实际上可以把它当作一个骗子来关闭,我投了赞成票并考虑删除我的答案......现在让它成为一个维基
  • 更新代码的tr没有类设置为sao-zebra,应该是这样的&lt;tr class="sao-zebra"&gt;
  • 谢谢!现在可以工作了。我们将看到当我将它添加到 wp 主题自定义 css 时会发生什么......

标签: html css


【解决方案1】:

你的选择器中有一个不应该有的空格,就在:nth-child之前

tr.sao-zebra:nth-child(odd) {
  background: #23282D;
}

【讨论】:

  • 更改了它,现在没有应用此选择器的样式。
  • @gthadi 按预期工作。这是正确答案,请参阅jsfiddle.net/sqma3qL1 请仔细检查您的代码。
猜你喜欢
  • 2013-04-04
  • 2011-09-03
  • 1970-01-01
  • 1970-01-01
  • 2017-10-26
  • 1970-01-01
  • 2013-12-31
  • 1970-01-01
相关资源
最近更新 更多