I feel silly for not being able to figure this out, but how do I turn off wordwrap? the css `word-wrap` property can be forced on with `break-word`, but cannot be forced *off* (only can be left alone with `normal` value).How do I force word wrap *off*?
I've found that there are a couple different "word-wrap" related CSS rules, all of which seem to do similar things. If I'm understanding you correctly, you don't want words to wrap at all? In that case, I use "whitespace: nowrap", as you can see in this example here: https://repl.it/@dSharp/Word-Wrap-Example. Just click the green "Run" button on the top of the screen and you'll see the result and get to mess with it however you need!