Saltar al contenido

alinear a la derecha ejemplo de código CSS

Ejemplo 1: centro de alineación CSS

//HTML
<div class="parent">
	<span>Hello World</span>
</div>

//CSS
.parent {
  display: flex;
  justify-content: center;
  align-items: center;
}

Ejemplo 2: CSS alinear elementos en el centro vertical

.parent {
  display: flex;
  justify-content: center;
  align-items: center;
}

Ejemplo 3: centrar texto en css

.class {
	text-align: center;
}

Ejemplo 4: texto del centro 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. */

Ejemplo 5: CSS alinear a la izquierda

body {
  text-align: left;
}

Ejemplo 6: centro de alineación de texto css

body {
  text-align: center;
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

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