에디터에만 폰트 적용법?
본문
summernote를 https://sir.kr/g5_plugin/1372?sfl=wr_subject%7C%7Cwr_content&stx=summernote
이거 가지고 최신버젼으로 수정하고 있습니다. 최신버젼에 들어있는
아래 코드때문에 사이트 전체에 영향을 주는대 이 폰트를 에디터에만 적용 하려면
어떻게 하면 될까요?
@font-face {
font-family: "summernote";
font-style: normal;
font-weight: 400;
font-display: auto;
src: url(font/summernote.eot);
src: url(font/summernote.eot?#iefix) format("embedded-opentype"), url(font/summernote.woff2) format("woff2"), url(font/summernote.woff) format("woff"), url(font/summernote.ttf) format("truetype");}
제가 수정한 에디터 전체파일은 여기 있습니다.
http://s000.tinyupload.com/index.php?file_id=83490854546616769903
!-->
답변 1
<div class="summernote">summernote 1</div>
<script>
$(document).ready(function() {
$('.summernote').summernote();
});
</script>
<style>
.summernote {font-family:'Malgun Gothic',"맑은 고딕",AppleGothic,Dotum,"돋움", sans-serif;}
</style>
보통 이런식으로 하면 에디터에만 적용 될텐데요.
!-->
답변을 작성하시기 전에 로그인 해주세요.