为何我自己设置的类不能够正确的显示。
先上代码:程序代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>测试官方网站</title> <style type="text/css"> <!-- .url a:link{color:blue; font-size:12px; text-decoration:none;} /*定义未访问过的链接样式*/ .url a:hover{color:red; font-size:12px; text-decoration:none;} /*定义鼠标经过的链接*/ .url a:active{color:purple; font-size:12px; text-decoration:underline;} /*定义激活的链接*/ .url a:visited{color:blue; font-size:12px; text-decoration:none;} /*定义访问过的链接*/ --> </style> </head> <body> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td class="url"> <a href="http://www.baidu.com" target="_blank">百度搜索引擎</a> </td> </tr> <tr> <td class="url"> <a href="http://www. target="_blank">好搜搜索引擎</a> </td> </tr> </table> </body> </html>
鼠标经过,和激活事件均没有起作用?
求解答。@电三轮