Si queremos ajustar el texto en HTML, debemos seguir los pasos que se detallan a continuación. Siguiendo estos pasos, cualquier usuario puede ajustar fácilmente cualquier texto que se mostrará en la página web.
Paso 1: En primer lugar, tenemos que escribir el código HTML en cualquier editor de texto o abrir el archivo HTML existente en el editor de texto en el que queremos ajustar el texto.
Wrap the text Hello User Your are at JavaTpoint Site . If we want to wrap the text in Html, then we have to follow the steps which are given on this page.
Paso 2: Ahora tenemos que usar ajuste de línea propiedad. Entonces, tenemos que colocar el cursor entre la etiqueta del encabezado, justo después de la etiqueta del título. Y luego tenemos que definir una clase y un sector de etiqueta en la etiqueta como se muestra en el siguiente bloque.
Wrap the text div { width: 100px; border: 2px solid red; } div.class_name { word-wrap: normal; }
Paso 3: Ahora, tenemos que definir esa clase antes del texto que queremos ajustar.
Any text which we want to wrap
Etapa 4: Y, por último, tenemos que guardar el archivo y ejecutarlo en el navegador.
Wrap the text div { width: 100px; border: 2px solid red; } div.a { word-wrap: normal; } div.b { word-wrap: break-word; } Hello User Your are at JavaTpointSite.Ifwe want to wrap the text in Html then we have to follow the steps which are given in this page. <br> Your are at JavaTpointSite.Ifwe want to wrap the text in Html then we have to follow the steps which are given in this page.Pruébalo ahora
El resultado del código HTML anterior se muestra en la siguiente captura de pantalla: