改变HTML中超链接的显示样式


更详细的内容请参考:http://www.w3school.com.cn/tags/tag_a.asp

HTML中的代码如下:

<a class="news_title" target="_blank"></a>

可以通过以下方式来改变其默认的显示样式:

.news_title {
        font: normal 18px/28px "Microsoft YaHei";
        font-size: 15px;
        font-weight: bold;
}


/*改变超链接的默认状态*/
a.news_title:link {color: #000000; text-decoration: none}
a.news_title:visited {color: #aa0000; text-decoration: none}
a.news_title:hover {color: #000000; text-decoration: none}

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。