“TEXTA ALINEAR CSS IZQUIERDO” Código de respuesta

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

Propiedad de alineación de texto en CSS

The different values of text-align are -
1) text-align: justify; (spreads throughout to the left and right)
2) text-align: center; (centers the text)
3) text-align: left; (the default value, shifts the text to left side)
4) text-align: right; (shifts the text to right side)
FIRE IN CODING

TEXTA ALINEAR CSS IZQUIERDO

body {
  text-align: left; 
}
Jonathan Gomez

Respuestas similares a “TEXTA ALINEAR CSS IZQUIERDO”

Preguntas similares a “TEXTA ALINEAR CSS IZQUIERDO”

Más respuestas relacionadas con “TEXTA ALINEAR CSS IZQUIERDO” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código