sparksuite / simplemde-markdown-editor

A simple, beautiful, and embeddable JavaScript Markdown editor. Delightful editing for beginners and experts alike. Features built-in autosaving and spell checking.
https://simplemde.com
MIT License
9.92k stars 1.12k forks source link

Vertical scroll cuts off bottom of text #619

Open kingofzeal opened 7 years ago

kingofzeal commented 7 years ago

This seems to be something directly with SimpleMDE, as CodeMirror doesn't seem to have this problem directly.

If you have a fixed height input field, and the text is longer than that height, the last line of the text is cut off about half way down.

This can be demod on the actual demo page by adding a 'height: 200px' property to the .CodeMirror class. The result looks like:

image

Mensu commented 6 years ago

@kingofzeal I met this issue just now and fixed it with box-sizing: content-box;, which was overwritten to box-sizing: border-box by bootstrap 3. Hope this helps