<ins>即下划线标签 但是通常来讲,不要给普通文本加下划线,因为用户会误以为是一个超链 ...
<ins>即下划线标签 但是通常来讲,不要给普通文本加下划线,因为用户会误以为是一个超链 ...
首先来了解下<a>标签的一些样式: <a>标签的伪类样式 一组专门的预定义的类称为伪类,主要用来处理超链接的状态。超链接文字的状态可以通过伪类选择符+样式规则来控制。伪类选择符包括: 总: a 表示所有状态下的连接 如 a{color:red} ① a:link ...
<style type="text/css">a:link,a:visited{ text-decoration:none; /*超链接无下划线*/}a:hover{ text-decoration:underline; /*鼠标放上去有下划线*/}</style> ...
CSS: 上划线:text-decoration:overline 中划线:text-decoration:line-through 下划线:text-decoration:underline 例子:<h2 style="text-decoration ...
<style type="text/css"> <!-- a:link { text-decoration: none;color: blue} a:active { t ...