1

我有以下内容:

<html>
<head>
<style type="text/css">
.campo {
  text-align : right;
  float : left;
}
</style>
</head>
<body>
  <table border="1">
    <tr style="text-decoration:line-through;">
      <td>
        <div class="campo">campo1</div>
      </td>
      <td>
        <div class="campo">campo2</div>
      </td>
    </tr>
  </table>
</body>
</html>

我无法将样式应用于 tr。如果我删除浮动属性,没问题。因为? http://jsfiddle.net/ZxQjE/

4

1 回答 1

0

根据https://bugzilla.mozilla.org/show_bug.cgi?id=403526,以下适用于text-decoration

但是,它不会进一步传播到浮动和绝对定位的后代,也不会传播到 'inline-table' 和 'inline-block' 后代的内容。

显然这是设计使然。

于 2013-01-14T16:46:15.387 回答