¿Qué atributo HTML se utiliza para justificar el contenido?

El atributo HTML se usa para justificar el contenido es un atributo de alineación. El atributo de alineación de la etiqueta <p> se usa para justificar el texto en una página web. Esto se puede hacer asignando el valor al atributo alineado como se justifica. 

La justificación del texto alinea el texto de tal manera que ocupa el mismo espacio horizontal desde los márgenes izquierdo y derecho de una página web mejorando su apariencia.

Sintaxis:

<p align="justify">

Ejemplo 1: este ejemplo muestra el contenido de la página web que no está justificado. 

HTML

<!DOCTYPE html>
<html>
  
<head>
    <title>Not Justified</title>
</head>
  
<body>
    <h3>The content is not justified</h3>
  
    <p>
        Welcome to Geeks for Geeks. It is a 
        computer science portal for geeks.
        It contains well written, well 
        thought articles. We are learning 
        how to justify content on
        a web page. 
    </p>
</body>
  
</html>

Producción:

Ejemplo 2: este ejemplo describe el contenido justificado en la página web usando el atributo de alineación.

HTML

<!DOCTYPE html>
<html>
  
<head>
    <title>Justified content</title>
</head>
  
<body>
    <h3>The content is justified</h3>
  
    <p align="justify">
        Welcome to Geeks for Geeks. It is 
        a computer science portal for geeks.
        It contains well written, well 
        thought articles. We are learning 
        how to justify content on
        a web page. 
    </p>
</body>
  
</html>

Producción:

De esta forma, el atributo de alineación se utiliza para justificar el contenido de la página web.

Publicación traducida automáticamente

Artículo escrito por ashimasaini010 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *