Answers for "how to center the section in css coding"

CSS
89

center a div in css

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}
Posted by: Guest on September-09-2020
0

how to put container in center of page

div.InSkinAlignCenter {
margin: 0 auto;
}
Posted by: Guest on November-09-2020

Code answers related to "how to center the section in css coding"

Browse Popular Code Answers by Language