Blog

[티스토리 꾸미기] 스킨 편집 Step 4 - H1 ~ H3 스타일 변경

StudyGPT 2023. 12. 19.

개요

H 부분 강조하기 위해 스타일을 변경

 

작업

/* H2 수정 */
.article-view h2 {
    font-size: 24px;
    line-height: 1.38;
    font-weight: 600;
    padding: 3px 5px 3px 10px;
    border-left: #98DDCA 12px solid;
    border-bottom: #98DDCA 1px solid;
}

/* H3 수정 */
.article-view h3 {
    font-size: 20px;
    line-height: 1.33;
    font-weight: 600;
    padding: 3px 5px 3px 10px;
    border-left: #dd9898 10px solid;
    border-bottom: #dd9898 1px solid;
}

/* H4 수정 */
.article-view h4 {
    font-size: 18px;
    line-height: 1.33;
    font-weight: 600;
    padding: 3px 5px 3px 10px;
    border-left: #ddcd98 8px solid;
    border-bottom: #ddcd98 1px solid;
}

 

댓글