编程论坛
注册
登录
编程论坛
→
WEB前端(UI)
怎么去掉超链接的下划线??
依隅
发布于 2006-02-17 11:03, 680 次点击
怎么去掉超链接的下划线??
4 回复
#2
pengboy
2006-02-17 16:55
用样式<a style="text-decoration:none;" href="">
#3
bagger
2006-02-18 07:52
用CSS写!
#4
依隅
2006-02-18 09:09
详细点吧,不明白
#5
ヤ順祺冄繎ヤ
2006-02-21 09:32
< style type="text/css" >
< ! - -
A{text -transform: none;
text -decoration: none ;}
a:hover { text -decoration:underline }
- - >
< /style >
1