a:visited { text-decoration: none}
a:hover { text-decoration: underline}
a:active { text-decoration: underline}
注意:在 CSS 定义中,a:hover 必须位于 a:link 和 a:visited 之后才能生效,a:active 必须位于 a:hover 之后才能生效。
link链接css文件的方式是通过在html中引用外部css文件来控制样式,在html文件中写入以下引用语句:
<link href="css文件路径" rel="stylesheet" media="screen" />其中href为css文件的路径;
rel="stylesheet"表示此链接文件是文档的外部样式表;
media="screen"表示被链接文档应用在计算机屏幕上,这也是默认值。