Здравствуйте, я пытаюсь создать разговор как приложение. Мне нужно было white-space: pre;
, чтобы показывать новые строки для моего сообщения с помощью \ n, но когда я это сделаю ... Оно будет перекрываться. Я пытаюсь найти способ заставить \n
создавать новые строки и в то же время создавать разрывы слов, чтобы слова не перекрывали мой div
<!DOCTYPE html>
<html>
<head>
<style>
p.c {
white-space: pre;
}
</style>
</head>
<body>
<h2>white-space: pre:</h2>
<div style="width:300px; background: red">
<p class="c">
This is some text. This is some text. This is some text.This is some text. This is some text. This is some text.This is some text. This is some text. This is some text. \n
This is some text. This is some text. This is some text.
</p>
</div>
</body>
</html>