Ejemplo 1: centrar texto en css
.class {
text-align: center;
}
Ejemplo 2: alinear texto justificar
text-align: justify;
Ejemplo 3: cuales son los tipos de posicionamiento en css
The types of positioning in CSS are-
1)static: this is the default value.
2)sticky: the element is positioned based on the user's scroll position.
3)fixed: the element is positioned related to the browser window.
4)relative: the element is positioned relative to its normal position.
5)absolute: the element is positioned absolutely to its first positioned parent.
Ejemplo 4: alineación de texto css a la derecha
body {
text-align: right;
}
Ejemplo 5: cómo enviar texto a la derecha css
padding-left: 3px;
Ejemplo 6: alineación de texto css a la izquierda
body {
text-align: left;
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)