Guest User

Untitled

a guest
Jun 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. /* マウスオーバー時のデコレーション(下線)を非表示 */
  2. a {
  3. color: #3583aa;
  4. text-decoration: none;
  5. }
  6.  
  7. /* 訪問済みリンクの文字色を変更 */
  8. a:visited {
  9. color: #788d98;
  10. }
  11.  
  12. /* /* マウスオーバー時のデコレーション(下線)を追加 */ */
  13. a:hover {
  14. text-decoration: underline;
  15. }
Add Comment
Please, Sign In to add comment