QuillKit - Column Layout Demo

About Column Support

New Feature: QuillKit now supports multi-column layouts, similar to newspaper columns! You can easily create 2-column or 3-column layouts for your content.
How to Use:

Click the column buttons in the toolbar to apply different layouts to your content!

Interactive Demo

Try out the column layout feature below. The editor already contains sample content. Use the 1 Col, 2 Col, and 3 Col buttons in the toolbar to change the layout!

Quick Actions

Use these buttons to quickly test different column layouts:

Code Example

Here's how to initialize the editor with column support:

// Initialize editor (column support is enabled by default) const editor = QuillKit.init('#editor', { toolbar: true, pageView: true, height: '600px' }); // Or access the column plugin directly const columnPlugin = editor.pluginManager.get('column'); // Apply 2-column layout programmatically columnPlugin.setColumnCount(2); // Remove columns (back to single column) columnPlugin.setColumnCount(1);