커닝(kerning)
커닝은 인접한 문자 사이를 짜임새 있고 조화롭게 엇물리는 것입니다.
커닝 적용 전 font-kerning: none;으로 커닝 정보를 사용하지 않음
커닝 적용 후 font-kerning: normal;으로 커닝 정보를 사용함
selector {
    font-kerning: /* value */
}
/* 키워드 값 */
font-kerning: auto;
font-kerning: normal;
font-kerning: none;

/* 글로벌 값 */
font-kerning: inherit;
font-kerning: initial;
font-kerning: revert;
font-kerning: revert-layer;
font-kerning: unset;
p {
    font-size: 50px;
    font-weight: 900;
}
.no-kern {
    font-kerning: none;
    color: red;
}
.with-kern {
    font-kerning: normal;
    color: blue;
}
<p class="no-kern">WAVE</p>
<p class="with-kern">WAVE</p>
실제 적용된 모습
font-kerning 속성의 브라우저 호환성
속성
데스크탑 Chrome
Chrome
데스크탑데스크탑 Edge
Edge
데스크탑 Firefox
Firefox
Safari
Safari
font-kerning 33 79 32 9