从Wikipedia打印预览中删除超链接下划线

时间:2019-06-09 02:27:04

标签: css printing wikipedia

我想从Wikipedia中打印一些文章,但是我想从打印物中的所有单词中删除超链接下划线。


我正在使用Wikipedia帐户User Scripts Custom CSS删除链接,但无法使其正常工作,下划线仍显示在Chrome的打印预览中。我创建了一个Wikipedia vector.css主题覆盖,并清除了浏览器缓存,但是我无法确定CSS是否正在应用。

Custom CSS

/* Remove Hyperlinks */
@media print {
    a:link {text-decoration: none !important;}
    a[href]:after {content: none !important;}
}

Wikipedia帐户小工具打印选项

我还使用Gadgets Print Options删除了其他元素,例如参考数字链接。

Wikipedia Print Options


Chrome打印视图

以及Chrome的“打印预览”功能,可重新格式化页面以进行打印。

您可以在此处看到预览中带下划线的链接。

Chrome Print View

1 个答案:

答案 0 :(得分:2)

切换Chrome's rendering to print,您会看到他们与border-bottom作弊。您也需要将其删除:

/* Remove Hyperlinks */
@media print {
    a:link {
        border-bottom: none !important;
        text-decoration: none !important;
    }
    a[href]:after {
        content: none !important;
    }
}