CSS
CSS: CSS EscuelaIT: Fundamentos Css Diana Acebes Display Posicionamiento Centrar Flexbox Propiedades: contenedor-flex: padre display:flex flex-direction: establece el eje principal del contenedor y su contenido flex-direction: row (default) flex-direction: row-reverse flex-direction: column flex-direction: column-reverse flex-wrap: determina la existencia o no de saltos de línea y su sentido flex-wrap: nowrap (default) flex-wrap: wrap flex-wrap: wrap-reverse justify-content: establece la dirección de los items en el eje principal (reparto del espacio) justify-content: flex-start (default) justify-content: flex-end justify-content: space-between justify-content: center justify-content: space-around align-items: establece la alineación de los items en el eje transversal (reparto de espacio) align-items: flex-start align-items: flex-end align-items: center align-items: baseline align-items: stretch...