+ 2
How to prevent the text from going to next line?
I want the text to continue in same line and overflow. Describe the solution with css code. https://code.sololearn.com/WEIdw7wZEc6j/?ref=app Thanks for your answers, done this: https://code.sololearn.com/Wg4TPTieKILI/?ref=app
2 ответов
+ 4
A CSS solution looks like:
p {
white-space: nowrap;
overflow: visible;
}
+ 3
p {
white-space: nowrap;
}