```htmlNo Underline Links a { textdecoration: none; }
Visit Example.com
1. 使用CSS的text-decoration属性
```css
text-decoration: none;
2. 使用伪类选择器
除了默认状态,还可以针对不同的链接状态去除下划线,例如鼠标悬停(:hover)或激活状态(:active)。
```css
text-decoration: none;
a:hover {
text-decoration: underline;
a:active {
text-decoration: underline;
3. 使用HTML5的underline属性
```html