全栈博客园 全栈博客园全栈博客园

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

```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去除a标签下划线,css铲除超级链接的下划线