Using a backtick in a long sentence goes out of the screen. #2655
Answered
by
mmistakes
wjrmffldrhrl
asked this question in
Q&A
-
I used a backtick (`) in the post and it out of the screen. Default size(100%)Reduced size(25%)like this
This is not a problem, but I leave a post in case it helps. My Repository and blog url |
Beta Was this translation helpful? Give feedback.
Answered by
mmistakes
Aug 14, 2020
Replies: 1 comment
-
That long string above has no spaces which is why it overflows outside of the browser's viewport. Fixes are:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mmistakes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That long string above has no spaces which is why it overflows outside of the browser's viewport.
This is the default behavior.
Fixes are:
<code>
CSS to wrap by addingword-break: break-all
... this could have unintended issues elsewhere.