スタイルシート2 スタイルシート2

HTMLのHEADの場所に書き込んでください。
リンクの下線を消す <style type="text/css"><!--a{text-decoration:none;}--></style>
画像リンクの線を消す <style type="text/css"><!--img{border-width:0;}--></style>
オンマウスで色変更
色名 <style type="text/css"><!--a:hover{color:色名;}--></style>
オンマウスでカーソルの形状変更
形状 <style type="text/css"><!--a:hover{cursor:形状;}--></style>
オンマウスで背景色表示 <style type="text/css"><!--a:hover{background-color:色名;}--></style>
オンマウスで背景画像表示 <style type="text/css"><!--a:hover{background-image:url(sss.gif);}--></style>
オンマウスでやや動く <style type="text/css"><!--a:hover{position:relative;top:3px;left:3px;}--></style>
オンマウスで下線 <style type="text/css"><!--a{text-decoration:none;}a:hover{text-decoration:underline;}--></style>
オンマウスで上線 <style type="text/css"><!--a{text-decoration:none;}a:hover{text-decoration:overline;--></style>
オンマウスで取り消し線 <style type="text/css"><!--a{text-decoration:none;}a:hover{text-decoration:line-through;}--></style>
オンマウスで下線を消す <style type="text/css"><!--a:hover{text-decoration:none;}--></style>
オンマウスで囲む <style type="text/css"><!--a{text-decoration:none}a:hover{border:solid 1px;}--></style>
オンマウスで太字 <style type="text/css"><!--a:hover{font-weight:bolder;}--></style>
オンマウスで斜体 <style type="text/css"><!--a:hover{font-style:italic;}--></style>