각종 팁

tistory URL 링크 색상 변경 방법

지노윈 2022. 2. 8. 14:59
반응형

기본적인 HTML 편집 방법은 다음 글을 참고해주세요.

[각종 팁] - tistory 코드 블럭 폰트 사이즈 변경하기

 

다음 코드는 색상 변경과 언더라인이 보이도록 하였다.

.article a:link {
    color: blue !important;
    text-decoration: underline !important;
}
.article a:visited {
    color: gray !important;
    text-decoration: underline !important;
}

 

CSS 편집에 다음과 같이 추가한 후 "적용"을 눌러줍니다.