Answers for "center child div"

CSS
0

text-align:center apply to parent div or child div

.parent {
    width: 100%;
    border: 1px solid blue;
    text-align: center;
}

.child {
    display: inline-block;  
    border: 1px solid red;
    margin: 2px;
}
Posted by: Guest on October-20-2020
0

center child container

Container(
        width: double.infinity,
        height: 500,
        color: Colors.amber,
        alignment: Alignment.center,
        child: Container(
          width: 200,
          height: 200,
          color: Colors.red,
        ),
),
Posted by: Guest on September-29-2021

Browse Popular Code Answers by Language