/* 마우스 오버 */
a:hover{
  background-color: yellow;
}
/* 클릭중 */
a:active{
  background-color: aqua;
}