<style type="text/css"> <!-- a:link { text-decoration: none;color: blue} a:active { t ...
首先来了解下 lt a gt 标签的一些样式: lt a gt 标签的伪类样式 一组专门的预定义的类称为伪类,主要用来处理超链接的状态。超链接文字的状态可以通过伪类选择符 样式规则来控制。伪类选择符包括: 总: a 表示所有状态下的连接 如 a color:red a:link:未访问链接 ,如 a:link color:blue a:visited:已访问链接 ,如 a:visited col ...
2016-09-20 15:37 0 3374 推荐指数:
<style type="text/css"> <!-- a:link { text-decoration: none;color: blue} a:active { t ...
找了很久,百度的答案真的让人无语,,,最后发现跟其他的设置css样式一样的去设置就可以了。 $("a").css("text-decoration", "none"); //去掉下划线 $("a").css("text-decoration", "underline"); //加上下划线 ...
1、在css中给标签添加样式 a{ text-decoration: none; } 2、也可以直接在a标签加style样式 <a href="×××.html" style="text-decoration: none;">×××</a> ...
...
<style type="text/css">a:link,a:visited{ text-decoration:none; /*超链接无下划线*/}a:hover{ text-decoration:underline; /*鼠标放上去有下划线*/}</style> ...
View Code ul { list-style-type: none; } a:link,a:visited { /*去掉a标签链接的下划线的效果 ...
去掉最下面一条 .mui-table-view:after { position: absolute; right: 0; bottom: 0; left: 0; height: 0px; content: ''; -webkit-transform: scaleY(.5); transform ...