1.1.1
Windows 7 and Chrome 66
If you set the option height: 'auto' to the editor, you can see an horizontal scrolling bar in the middle of the textarea.
Hide the scrolling bar.
This can be done with something like this :
```css
.CodeMirror-scroll {
min-height: 166px;
}
````

Might also be related to the editor not initializing correctly if starting in markdown mode.
I found something if its in an element with display: none theres initialization issues
Checkout https://github.com/codemirror/CodeMirror/issues/798
I found cause of this issue.

min-height: 145px; should also apply to <div class="CodeMirror-scroll" ... />.


Most helpful comment