CSS

마우스 관련 CSS 속성

PT sun 2020. 8. 6. 17:44
<style>
  a.hover {					마우스를 올렸을 때 (hover)
      color : #ff8000;
  }

  a.active {					클릭했을 때	(active)
      color : #ff8000;
  }

  a.link {					아직 방문하지 않은 링크 (link)
      color : #ff8000;
  }

  a.visited {					1번이라도 방문한 적 있는 링크 (visited)
      color : #ff8000;
  }

  a {							링크 밑줄 없애기 (text-decoration : none;)
      text-decoration : none;
  }
</style>