Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="ui grid center aligned row" style="height: 100%; align-items: center">
	<div class="twelve wide column">
		<h1>CKEditor 5 Balloon with Semantic-UI</h1>
		<a href="#" id="modal-button" class="ui green button" >Click to open Modal</a>
	</div>

<div class="ui modal">
  <div class="content">
    <div id="editor">
			<p>This is sample content of <a href="https://ckeditor.com">CKEditor 5 Balloon Build</a>.</p>
		  <p>Now, <strong>make some text selection</strong>! :)</p>
		</div>
  </div>
</div>
              
            
!

CSS

              
                body {
	/* We need to assaign this CSS Custom property to the body instead of :root, because of CSS Specificity and codepen stylesheet placement before loaded CKE5 content. */
	--ck-z-default: 100;
	--ck-z-modal: calc( var(--ck-z-default) + 999 );
}

/* Visual improvements. */
body, html { margin: 0; padding: 0; width: 100vw; height: 100vh; overflow: hidden; background: #56b968; }

h1 { font-size: 36px; color: #fff; }

              
            
!

JS

              
                BalloonEditor
	.create( document.querySelector( '#editor' ) )
	.catch( error => {
		console.error( error );
	} );

$( '#modal-button' ).click( () => {
	$( '.modal' ) .modal( 'show' );
} );

              
            
!
999px

Console