关于超链接颜色的奇怪浏览器问题(Firefox 与 iMac 上的 Safari)
如果您不介意前往我的网站并在 Mac 上的 Safari 和 Firefox 上查看它在 Mac 上,超链接颜色在 FF 中通常的蓝色和 Safari 中的紫色之间变化。有什么想法吗?
If you wouldn't mind heading over to my site and viewing it in Safari on a Mac and Firefox on a Mac, the hyperlink colours change between the usual blue in FF and purple in Safari. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
实际上 FF 和 Safari 处理您网站的方式没有什么区别;如果您访问/单击两个浏览器中的链接,您会注意到每个浏览器中的颜色都会变为紫色,表明您已访问过该网站。这只是一个默认的 CSS 属性。
如果您不喜欢此属性,请将其添加到 CSS 中:
即使有人访问该链接,此更改也会将链接设置为蓝色。
希望这有帮助
There is actually no difference between how FF and Safari handles your site; if you visit/click on the links in both browsers you will notice that the color will change in each browser to a purple indicating you have visited the site. This is simply a default CSS property.
If you do not like this property, add this to your CSS:
This change will set the link to blue even after someone visits the link.
Hope this helps
主题中的 CSS 文件之一将链接颜色设置为蓝色。正如埃里克所说,您可以将其更改为您喜欢的任何颜色(如果您想要默认值,则将其删除)。
http://blog.twostepmedia.co.uk /wp-content/themes/thematic/library/styles/default.css
一个:链接{
颜色:#004B91;
}
One of the CSS files from your theme is setting the link colour to blue. As Eric says, you can change this to any colour you like (or remove it if you want the default).
http://blog.twostepmedia.co.uk/wp-content/themes/thematic/library/styles/default.css
a:link {
color:#004B91;
}
将其添加到您的 CSS 并使用您选择的颜色
Add this to your CSS and use the color of your choice