Answers for "flex box first div align center and second buttom"

CSS
1

how to center an item without flex

.container{
position: relative;
}
.child{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, 50%);
}
Posted by: Guest on September-06-2021
0

how to center an overlay button using flex box

display:flex;
align-items:center;
justify-content:center;
Posted by: Guest on August-20-2021

Browse Popular Code Answers by Language