Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在创建一个网站,在标题上我有一些 .png 图像用作按钮,我的问题是当我在 ie9 中打开该网站时,访问的图像有一个紫色的轮廓。我的问题是如何禁用图像上的已访问链接突出显示或使其透明以使其不会出现。
如果我不想显示链接访问状态,我只需将其设置为与常规链接状态相同,如下所示:
a, a:visited { // my styles }
然后是悬停和聚焦的另一个规则:
a:hover, a:focus { // my styles }
如果需要,另一个用于活动:
a:active { // my styles }
如果您的图像作为链接或访问链接获得边框,并且您不希望这样做,则应将以下内容添加到您的 css 中:
img { border: 0; }