¿Cómo alinear el contenido del texto en el centro usando JavaScript?

En este artículo, alinearemos el contenido del texto en el centro usando JavaScript. Usamos la propiedad textAlign de estilo HTML DOM para establecer la alineación del texto.

Sintaxis:

object.style.textAlign = "center"

La sintaxis anterior establece la alineación del texto en el centro dinámicamente.

Ejemplo:

HTML

<!DOCTYPE html>
<html>
 
<head>
    <title>
        How to align text content into
        center using JavaScript ?
    </title>
</head>
 
<body>
    <h1 style="color: green;">GeeksforGeeks</h1>
 
    <h3>
        How to align text content into
        center using JavaScript ?
    </h3>
 
    <p id="content">
        GeeksforGeeks: A computer
        science portal for geeks
    </p>
 
 
 
 
    <button onclick="myFunction();">
        Set Alignment
    </button>
 
    <script type="text/javascript">
 
        function myFunction() {
            let txt = document.getElementById("content");
            txt.style.textAlign = "center";
        }
    </script>
</body>
 
</html>

Producción:

Antes de hacer clic en el botón:

Después de hacer clic en el botón:

Navegadores compatibles: 

  • Google Chrome
  • explorador de Internet
  • Mozilla Firefox
  • Ópera
  • Safari

Publicación traducida automáticamente

Artículo escrito por vkash8574 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 *