python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Cannot break specific Korean Characters
How can I break these characters?
ᄀᄁᄂᄃᄄᄅᄆᄇᄈᄉᄊᄋᄌᄍᄎᄏᄐᄑ
As you can see, all of the characters are automatically moved to the new line to prevent overflowing but not the said Korean string above.
Alrea...
Mark Joshua Fajardo
Votes: 0
Answers: 0
Forcing a word to wrap
How can I make the word "Hameln" take on a new line instead of breaking?
I've tried experimenting with overflow-wrap, word-break, & white-space but either the word breaks or it overflows...
Lalit Jindal
Votes: 0
Answers: 0
HTML/CSS textarea - how to prevent word-wrap only for words with hyphen
In textarea I want use word-wrap / break word but not on words with hyphen
Here is the code
#wrap {
width: 250px;
position: relative;
font-family: sans-serif;
height: 80px;
}
#wrap .area ...
sabrakadabra
Votes: 0
Answers: 1
Unwanted early wrapping with "word-break: break-all" (and "break-word")
I have a long string, without whitespace, and a I want to place it in a div, such that
It fills the div as much as possible, without overflowing.
It uses the same amount of characters on each line (e...
Abigail
Votes: 0
Answers: 2