Answers for "how to align div inside div to center"

CSS
1

align a div in center of another div

#container {
    width: 640px; /*can be in percentage also.*/
    height: auto;
    margin: 0 auto;
    padding: 10px;
    position: relative;
}
Posted by: Guest on April-30-2020
0

center align divs inside divs html

margin: 0 auto;
  
  must be of class container
Posted by: Guest on September-02-2021

Code answers related to "how to align div inside div to center"

Browse Popular Code Answers by Language