hover要素を使ってtext-decoretionプロパティーにunderiineを使うとマウスを載せた時下線が出てくる。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<title>マウスを載せたときに下線を表示</title>
<style type="text/css">
<!--
a { text-decoration: none; font: 1em Verdana; }
a:hover { text-decoration: underline; }
-->
</style>
</head>
<body>
<UL>
<li><a href="http://masao261.jog.buttobi.net/">HTML 4.01</a></li>
<li><a href="http://masao261.jog.buttobi.net/">XHTML 1.0</a></li>
<li><a href="http://masao261.jog.buttobi.net/">XHTML 1.1</a></li>
<li><a href="http://masao261.jog.buttobi.net/">CSS level 1</a></li>
<li><a href="http://masao261.jog.buttobi.net/">CSS level 2</a></li>
</UL>
<P><BR>
hover要素を使ってtext-decoretionプロパティーにunderiineを使うとマウスを載せた時下線が出てくる。</P>
<P></P>
</body>
</html>