在接受回答以下行不正確:
在 後裔框的任何文本裝飾設置可從來沒有「撤銷」的祖先盒子的 文本修飾。
永遠不要說永遠不對吧?
我還沒有找到IE的解決方案,但(除非你與其中刪除線是在<TD>
設置一個場景中工作),但它是可能對其他瀏覽器,但你必須要戰鬥邊 - 解決方案的影響。
在http://result.dabblet.com/gist/3713284/
總之見自己:只需添加display:table;
孩子的風格。出於某種原因在FF中,您可以使用任何table
,block
,list-item
或table-caption
,但這些在Safari/Chrome中不起作用。
它使用下面的代碼:
<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>
呃。這就是我所害怕的。感謝您的答案和鏈接,它解釋得很好! – JPero 2009-08-11 18:05:44
其實,在特定的情況下,它*是可能的!我在下面的答案中添加了更完整的說明:-) – Potherca 2011-01-15 20:21:02