“Contenido de texto HTML Nueva línea” Código de respuesta

Cómo hacer una nueva línea en el párrafo HTML

<p>
Will Mateson<br />
Box 61<br />
Cleveland, Ohio<br />
</p>
Shy Stork

Contenido de texto HTML Nueva línea

//setting this css style solving problem with new line in textContent
h1.setAttribute('style', 'white-space: pre;');

//add \r\n in text everywhere You want for line-break (new line)
h1.textContent = "this is line one  \r\n and this is line 2";
Friendly Hawk

Respuestas similares a “Contenido de texto HTML Nueva línea”

Preguntas similares a “Contenido de texto HTML Nueva línea”

Más respuestas relacionadas con “Contenido de texto HTML Nueva línea” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código