If you don’t set the height, the editable area’s height will change according to contents. You can define min-, and max-height as well.
<!-- Include the MUDS stylesheet --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/muds.min.css"> <!-- Create the editor container --> <textarea id="editor"></textarea> <!-- Include the MUDS library --> <script src="https://cdn.jsdelivr.net/npm/[email protected]/muds.min.js"></script> <!-- Initialize MUDS editor --> <script> var muds = new muds({ selector: 'editor', height: '300px', minheight: '200px', maxHeight: '400px', }); </script>
The editor is resizable by default, but can be disabled like so: resize: false.
<!-- Include the MUDS stylesheet --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/muds.min.css"> <!-- Create the editor container --> <textarea id="editor"></textarea> <!-- Include the MUDS library --> <script src="https://cdn.jsdelivr.net/npm/[email protected]/muds.min.js"></script> <!-- Initialize MUDS editor --> <script> var muds = new muds({ selector: 'editor', resize: false }); </script>