통합검색

Javascript

ckeditor 글꼴 스타일 추가

  • 2025.04.22 17:14:00
1. css 적용 필요
위치 : 사용자 화면, plugin css (/ckeditor/content.css)
@font-face {
    font-family: 'Nanum Myeongjo';
    src: url('파일경로') format('woff');
    font-weight: normal;
    font-display: swap;
}


2. config 설정
폰트 사이즈와 폰트명을 추가
위치 : /ckeditor/config.js
config.fontSize_sizes = '15/15px;16/16px;18/18px;20/20px;22/22px;24/24px;26/26px;28/28px;36/36px;48/48px;72/72px';
config.font_names = '나눔고딕;나눔명조;Noto_Sans_KR;' + config.font_names;