Home > Software engineering >  How can Align Bootstrap 5 Card component to Center
How can Align Bootstrap 5 Card component to Center

Time:06-13

https://i.stack.imgur.com/y86aU.jpg

Above Screen-shot I want to align the center. My Parent division class name main-div

CodePudding user response:

 .main-div  {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}
  • Related