CSS样式表 超链接编辑
@charset "utf-8"; /* CSS Document */ <style type="text/css"> *{ margin:0px; padding:0px; } a:link { color:#000; text-decoration:none;} a:visited { color:#000; text-decoration:none;} a:hover { color:#F00; text-decoration:underline;} a:active { color:#F93; text-decoration:underline;} </style>