```cssa { textdecoration: none;}```
```cssa.myclass { textdecoration: none;}```
```cssmyid { textdecoration: none;}```
使用CSS的text-decoration属性去除下划线
```css
text-decoration: none;
```css
/ 使用类选择器 /
.my-link {
text-decoration: none;
/ 使用ID选择器 /
my-link {
text-decoration: none;
```html