好玩的小众游戏:网页上的超链接有以下特征

来源:百度文库 编辑:高考问答 时间:2024/05/06 09:43:42
( A )文字会改变颜色
( B )鼠标指针的形状变为手形
( C )文字出现下划线
( D )字体变大

加上这段CSS在网页的<head>中间,
<style type="text/css">
<!--
a:link {color: #009900; text-decoration: none;}
a:visited {text-decoration: none; color: #009900;}
a:hover {text-decoration: underline; color: #FF9900; font-size: 14px;}
a:active {text-decoration: none; color: #009900;}
body,td,th {font-size: 12px;}
-->
</style>