La ligne suivante dans la réponse acceptée est incorrecte:
Tout paramètre de décoration de texte sur une boîte descendante ne peut jamais « défaire » les décorations de texte d'une boîte ancêtre.
Ne dites jamais jamais, non?
Je n'ai pas trouvé une solution pour IE encore (à moins que vous travailler avec un scénario où le biffés est situé sur une <TD>
) mais il est possible pour les autres navigateurs, bien que vous devrez combattre le côté -effets de la solution.
Voir pour vous-même à http://result.dabblet.com/gist/3713284/
En bref: il suffit d'ajouter display:table;
au style de l'enfant. Pour une raison quelconque dans FF, vous pouvez utiliser l'un des table
, block
, list-item
ou table-caption
mais ceux-ci ne fonctionnent pas dans Safari/Chrome.
Il utilise le code ci-dessous:
<span style="text-decoration:line-through;">
Dead Text
<a href="#" style="text-decoration:underline;color:Red;">Undesired strikethrough</a>
</span>
<div style="text-decoration:line-through;">
Dead Text
<a href="#" style="text-decoration:underline;color:Red; display: table;">display: table in a div</a>
</div>
<span style="text-decoration:line-through;">
Dead Text
<a href="#" style="text-decoration:underline;color:Red; display: table;">display: table in a span</a>
</span>
<span style="text-decoration:line-through; display: block;">
Dead Text
<a href="#" style="text-decoration:underline;color:Red; display: table;">display: table in a span with "display:block;"</a>
</span>
<span style="text-decoration:line-through; display: table-cell;">
Dead Text
<a href="#" style="text-decoration:underline;color:Red; display: table;">display: table in a span with "display:table-cell;"</a>
</span>
<span style="text-decoration:line-through;">
Dead Text
<a href="#" style="text-decoration:underline;color:Red; display: list-item;">display: list-item</a>
</span>
<span style="text-decoration:line-through;">
Dead Text
<a href="#" style="text-decoration:underline;color:Red; display: table-caption;">display: table-caption;</a>
</span>
Pouce. C'est ce dont j'avais peur. Merci pour la réponse et le lien, ça l'a bien expliqué! – JPero
En fait, dans certaines circonstances, c'est * possible *! J'ai ajouté une description plus complète dans ma réponse ci-dessous :-) – Potherca