Html&css/개념정리

링크 밑줄제거법

현규띠 2022. 8. 26. 20:54

 

.gitLink:hover{
text-decoration: none;
}
.gitLink:link{
text-decoration: none;
}

.gitLink:active{
text-decoration: none;
}

.gitLink:visited{
text-decoration: none;
}