@我在网页上看到别人做的网页是这样的:当鼠表指针指到超连接时文字就会变色的!这是什么回事?我弄的网页就非常死板了```
@如何在Microsoft Office FrontPage 2003上弄这个呢?
參考答案:加上css定义
<style>
a:link {color: #141414; text-decoration: none; }
a:visited {color: #141414; text-decoration: none; }
a:active {color: #141414; text-decoration: none; }
a:hover {color: #f00; text-decoration: underline; }
</style>