当前位置:首页 > 前端开发 > 正文

css去除a标签下划线,css铲除超级链接的下划线

导语:```cssa{textdecoration:none;}``````cssa.nounderline{textdecoration:none;}``````html链接文本```一、运用text-decoration特点...

```cssa { textdecoration: none;}```

```cssa.nounderline { textdecoration: none;}```

```html链接文本```

一、运用text-decoration特点去除下划线

```css

text-decoration: none;

二、运用伪类选择器操控下划线显现

```css

text-decoration: none;

a:hover, a:active {

text-decoration: underline;

```css

text-decoration: none;

color: inherit;

四、针对特定元素去除下划线

免责申明:以上内容属作者个人观点,版权归原作者所有,如有侵权或内容不符,请联系我们处理,谢谢合作!
上一篇:css长度单位, 肯定长度单位 下一篇:html修改,从根底到实践