Responsive div, floating and centered
2 answers
You can use display: inline-block
for children and text-align: center
parent
<div class="container">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
.container {
background-color: blue;
width:500px;
text-align: center;
}
.item {
display: inline-block;
background-color: green;
width: 100px;
height: 100px;
}
+7
source to share