“TEXTA ALINEA CSS” Código de respuesta

Cómo justificar el texto en HTML

<p align="justify">
Itchy Ibex

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

Cómo centrar el texto en CSS

.class {
	text-align: center;
}
k-vernooy

TEXTA ALINEA CSS

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

Respuestas similares a “TEXTA ALINEA CSS”

Preguntas similares a “TEXTA ALINEA CSS”

Más respuestas relacionadas con “TEXTA ALINEA CSS” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código