본문 바로가기

컴퓨터

a 태그 스타일 없애기

a:link {
    color: green; 
    background-color: transparent; 
    text-decoration: none;
}//방문 전 링크 상태

a:visited {
    color: pink;
    background-color: transparent;
    text-decoration: none;
}//방문 후 링크 상태

a:hover {
    color: red;
    background-color: transparent;
    text-decoration: underline;
}//마우스 오버했을 때 링크 상태

a:active {
    color: yellow;
    background-color: transparent;
    text-decoration: underline;
}//클릭했을 때 링크 상태

a:hover:not(.active) {
    background-color: #111;
}

.active {
    background-color: #4CAF50;
}

'컴퓨터' 카테고리의 다른 글

button submit 막기  (0) 2019.07.13
이전 페이지로 이동 history.back()  (0) 2019.07.11
첫 줄 들여쓰기 text-indent  (0) 2019.07.07
input 값 배열로 전달하기  (0) 2019.07.04
라즈비안에 mongodb 설치하기  (0) 2019.07.04