所以我在WPF上的webbrowser上打开我的电脑上的本地保存的网页.mhtml。
我希望在该页面上制作文字,
我尝试过添加
<style type="text/css">
<!--
a:link { color: #000000; text-decoration: none}
-->
</style>
在<HEAD>
下......这使得我的所有文字都变黑了,但是在用chrome查看它时,在wpf中,webbrowser是IE,在IE链接中仍然是蓝色的。有什么帮助吗?
答案 0 :(得分:0)
试试这个:
a { color: #000000; text-decoration: none}
a:visited { color: #000000; }
这应该有效。 :) a:visited
定义用于对已单击的链接进行样式设置的css。据我测试,它也适用于IE。