CSSでリンクを設定する場合はこの順番
1 2 3 4 | a:link{ color : #000000 ; text-decoration : underline ;} a:visited{ color : #aaaaaa ; text-decoration : underline ;} a:hover{ color : #ff0000 ; text-decoration : none ;} a:active{ color : #ff8833 ; text-decoration : none ;} |
上から読まれるからこの順番を崩すと反映しない