꾸미기 - 스킨편집 - html 편집 - HTML 탭
<head> 와 </head> 사이에 아래 코드 카피
<!-- 하이라이트 적용 -->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.2.0/styles/default.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.2.0/highlight.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlightjs-line-numbers.js/2.8.0/highlightjs-line-numbers.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script>hljs.initLineNumbersOnLoad();</script>
CCS 탭으로 이동
맨 마지막 줄에 아래 코드 카피
/* 하이라이트 라인넘버 */
.hljs-ln-numbers {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-align: center;
color: #B5B5B5;
border-right: 1px solid #B5B5B5;
vertical-align: top;
width: 20px;
padding-left: 0px;
}
.hljs-ln td.hljs-ln-code {
padding-left: 15px;
}
CCS 탭에서 Ctrl+F 를 눌러 'entry-content table' 검색
.entry-content table {
//...
}
.entry-content table thead th {
//...
}
.entry-content table tbody td {
//...
}
위 코드를 아래 코드로 교체
.entry-content > table {
width:100%;
margin-bottom: 22px;
border: 1px solid #e6e6e6;
border-collapse: collapse;
text-align: center;
font-size: 0.9375em;
line-height: 1.5714;
color: #666;
}
.entry-content > table thead th {
padding:7px 0 11px;
border-left: 1px solid #e6e6e6;
}
.entry-content > table tbody td {
padding:7px 0 11px;
border-left: 1px solid #e6e6e6;
border-top: 1px solid #e6e6e6;
}
'개발도구' 카테고리의 다른 글
Visual Studio ] 프로그램 배포시 dll 이 없어 실행할 수 없는 문제 해결하기 (vcruntime140.dll, msvcr120d.dll), 정적 링킹 (0) | 2022.12.14 |
---|---|
용량이 큰 USB를 FAT 또는 FAT32 로 포맷하는 방법 (0) | 2022.12.13 |
Windows ] 송수신 테스트용 더미파일 만들기 (0) | 2022.11.15 |
Wireshark ] 종료 전 또는 새 캡쳐 시작 전 이전 캡쳐 저장할 지 묻는 창 안뜨게 하기 (0) | 2022.11.06 |
Everything ] 네트워크 폴더 추가하는 방법 (0) | 2022.10.13 |