ホームページ > 記事 > ウェブフロントエンド > ハイパーリンクのスタイル設定_html/css_WEB-ITnose
a:link {text-decoration:none; color: blue;} /* 未訪問のリンクは青色です*/
a:visited {text-decoration:none; color: blue} /* 訪問済みのリンクは青色です*/
a :hover {text-decoration:none; color: blue} /* マウスをホバーするとリンクが青色になります*/
a:active {text-decoration:none; color: blue} /* アクティブ化リンクをマウスでクリックすると青色になります*/