Hello, I have a parent div that I set with min-width:800px
and max-width:1400px
, how do I make this div always align with the center?
Hello, I have a parent div that I set with min-width:800px
and max-width:1400px
, how do I make this div always align with the center?
Put the automatic margins:
.exemplo {
min-width:800px;
max-width:1400px;
margin-left:auto;
margin-right:auto;
}