Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

이에 따라, 이 요소들과 관련된 CSS 스타일을 별도로 설정해야 합니다.


Image ModifiedImage AddedImage ModifiedImage Removed

일반 mode에디터는 <div> 태그 내에 위치합니다.
Iframe에디터가 <iframe> 안에 위치합니다.
Iframe mode에디터가 <iframe> 안에 위치하고, 그 내부에 또 다른 <iframe>이 포함됩니다.


Info
titleIframe mode

Iframe mode일 경우, config 설정을 해주어야 합니다.

>> iframe mode 설정하기


CSS 추가 방법

  • HTML 파일에 <link>태그를 추가하여 CSS 스타일을 추가할 수 있습니다.
  • 예를 들어, editor.html, index.html 등의 파일에 아래와 같이 적용합니다.

...

위의 그림과 같이 synapeditor.min.css는 에디터의 최상위 haed에 위치하며, Iframe/Iframe mode일 경우 Iframe의 최상위 head에 위치합니다.

Code Block
languagexml
themeEmacs
titleeditor.html
linenumberstrue
<!-- SynapEditor 객체가 존재해야 적용할 수 있기 때문에 에디터 스크립트 파일 아래에 include 해야 합니다 -->

<link rel='stylesheet' href='../dist/synapeditor.min.css'>

...

Code Block
languagejs
themeEmacs
title결과 값
<body>
...
<editor></editor>
<div id="synapeditorUI">
	<div class="se-external-container-wapper">
		<div id="editorId_container" class="se se-external-container"></div>>
			<div class="se-balloon-container"></div>
			<div class="se-dialog-container"></div>
			<div class="se-tooltip-container"></div>
		</div>
	</div>
</div>
</body>

 Iframe mode 설정하기

...