Answers for "how to center div inner div in css?"

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

Browse Popular Code Answers by Language