a { text-decoration: none; color: inherit; }
在上面的代码中,大家为a标签加入了两个样式:
1. text-decoration: none; 去掉下划线
2. color: inherit; 继承父级元素的文字颜色
这样,大家就可以去掉a标签默认的下划线,并且让文字的颜色与父级元素相同,从而达到去掉a标签文字样式的效果。
首页 >
a { text-decoration: none; color: inherit; }
在上面的代码中,大家为a标签加入了两个样式:
1. text-decoration: none; 去掉下划线
2. color: inherit; 继承父级元素的文字颜色
这样,大家就可以去掉a标签默认的下划线,并且让文字的颜色与父级元素相同,从而达到去掉a标签文字样式的效果。