如何改变锚链接的文本的颜色? [英] How to change color of only text of anchor link?

查看:433
本文介绍了如何改变锚链接的文本的颜色?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有这样的代码

<a href="#" title="some title">
  <span>Do not change color of this text</span>
  Want to only change this text color
</a>

我想更改锚定标记文字的颜色,而不是 span
使用CSS而不是jQuery。

I want to change the color of anchor tag text only, not color of text in span. Using CSS not jQuery.

推荐答案

创建样式以确保应用正确的颜色:

Create a style to ensure the correct colors are being applied:

a {
    color: #00f;
}
p, a span {
    color: #000;
}

这将设置正常文本的颜色( p ),并将链接内部( a span )设置为黑色,而将链接中其余部分的颜色设置为蓝色。

This sets the color of normal text (p) and spans inside links (a span) to black, whereas it sets the color of the rest of the text in links to blue.

这篇关于如何改变锚链接的文本的颜色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆