Currently, the page looks like the following:
I hope the page width is larger, i.e. a page is wider and a line contains more words.
I tried to modify the css like the following:
.CodeMirror pre.CodeMirror-line {
font-size: 16px;
font-family: PingFang, Fira Code, Source Code Pro, monospace;
max-width: 1000px;
}
However, the last line does not take effect. The width of the page within the editing window is always not exceeding 700px. In other words, while example shown above doest not work, if i set the max-width to 100px, the page width will become 100px.
I want to know what can I do to get a wider page width? (I prefer to not change the font-size, by the way).