“El texto de CSS se alinea a la izquierda” Código de respuesta

Texto central CSS

/* To center text, you need to use text-align. */

.centerText {
  text-align: center; /* This puts the text into the center of the 
  screen. */
}

/* There are also other things that you can use in text-align:
left, right, and justify. Left and right make the test align to the
right or left of the screen, while justify makes the text align both
sides by spreading out spaces between some words and squishing others. */
Incon

Alineación de texto CSS

h1 {
  text-align: center;
}

h2 {
  text-align: left;
}

h3 {
  text-align: right;
}
naly moslih

El texto de CSS se alinea a la izquierda

body {
  text-align: left;
}
TheDevStar

El texto de CSS se alinea a la derecha

body {
  text-align: right;
}
TheDevStar

TEXTA ALINEA CSS

p{
    text-align:center;/*values: center, left, right, etc...*/
}
Dr. Hippo

TEXTA ALINEAR CSS IZQUIERDO

body {
  text-align: left; 
}
Jonathan Gomez

Respuestas similares a “El texto de CSS se alinea a la izquierda”

Preguntas similares a “El texto de CSS se alinea a la izquierda”

Más respuestas relacionadas con “El texto de CSS se alinea a la izquierda” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código