css通过父级标签去a标签的下划线
时间: 2023-07-25 07:29:29 浏览: 229
去掉<a>标签下划线
5星 · 资源好评率100%
可以通过给父级标签设置text-decoration属性,然后再给a标签设置text-decoration: none;来去掉a标签的下划线,从而实现通过父级标签去a标签的下划线的效果。例如:
```css
.parent-class {
text-decoration: underline; /* 给父级标签添加下划线 */
}
.parent-class a {
text-decoration: none; /* 去掉a标签的下划线 */
}
```
这样,a标签就不会显示下划线,但是其它文本内容会显示下划线。
阅读全文