下划线不会从html中消失

Underline is not disappearing from html

本文关键字:消失 html 下划线      更新时间:2023-09-26

我在这里使用ejohn的jsdiff

但是我在文本下得到下划线。这个下划线来自用户代理样式表。

这里是小提琴的链接。你可以看到我得到了下划线。我试过使用text-decoration:none,但没有帮助。

调用jsDiff只需使用下面的代码

document.body.innerHTML = diffString(
"How are you.",
"How are you all");

您需要在ins元素上指定text-decoration: none,如下所示:

ins{
    background:#E6FFE6;
    text-decoration:none;
}
<<p> JSFiddle演示/strong>。