Keep the code within the border? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Keep the code within the border?

Look at this code. https://code.sololearn.com/W1Hb3ZcBX9wb/?ref=app As you can see, the code for JavaScript escapes the defined border, and I assume CSS would too, if it was long enough. How can I fix this? EDIT: I'm running this from the SoloLearn app. I'm not sure how this looks from a browser. Just so everyone knows.

20th Jul 2018, 7:07 AM
Daniel Cooper
Daniel Cooper - avatar
2 Answers
+ 3
You can do: overflow-x: auto; so that the div is scrollable if the content overflows. There's probably a way to wrap the contents using: word-break: break-all; word-wrap: break-word; but for some reason, that doesn't work unless I add: white-space: normal;
20th Jul 2018, 7:20 AM
Hatsy Rei
Hatsy Rei - avatar
+ 2
white-space: pre-line; also works, if that's preferable over scrolling.
20th Jul 2018, 7:56 AM
Hatsy Rei
Hatsy Rei - avatar