Answers for "centralizar divcom css"

CSS
1

centralizar div verticalmente css

#parent {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
#child {
	width: 20px;
}
Posted by: Guest on September-03-2021
0

como centralizar uma div

.container { 
    width: 700px; 
    margin-left: auto;
    margin-right: auto; 
}
Posted by: Guest on October-12-2021

Browse Popular Code Answers by Language