如果td为null(仅使用CSS),CSS隐藏tr

时间:2015-05-27 10:40:11

标签: css

我在html中有这样的表:

<table>
  <thead>
    <tr>
      <th>Campo</th>
      <th>Valor</th>
    </tr>
  </thead>

  <tbody>

    <tr>
      <th>Marca</th>
      <td>Procelec</td>
    </tr>

    <tr>
      <th>Modelo</th>
      <td>Solfwan</td>
    </tr>

    <tr>
      <th>Tipo Elemento</th>
      <td></td>
    </tr>

  </tbody>
</table>

还有很多其他领域。我想创建一个CSS类来将它分配给每个tr标签,以便在td标签为空时隐藏整个tr ......

我无法使用javascript,因为我使用的是第三方应用,只允许我粘贴HTML代码和CSS ......

是否可以仅使用HTMl和CSS执行此操作?

0 个答案:

没有答案