Posts by frontfabi • 1 point
1 post
-
-1
votes2
answers43
viewsA: Alignment of div to the center of another div
Set a height for the parent div and work with display: flex. I used as example 800px. .caixaAlertasMobile { display: flex; align-items: center; justify-content: center; flex-direction: column;…