I need the "div 1" label to always appear on the right side of the divs, while still maintaining responsiveness. Is there a way to achieve this effectively?
Struggling to find a wrapper that meets my responsiveness requirements.
#wrapper {
width: auto;
clear: both;
}
#second {
background-color: blue;
width: auto;
float: left;
}
.items {
display: flex;
flex-wrap: wrap;
margin-left: -10px;
margin-top: -10px;
}
.items .item {
flex: 1 0 200px;
box-sizing: border-box;
background: #e0ddd5;
color: #171e42;
padding: 10px;
margin-left: 10px;
margin-top: 10px;
width: auto;
float: left;
}
@media (min-width: 410px) {
.items .item {
max-width: calc(50% - 10px);
}
}
@media (min-width: 620px) {
.items .item {
max-width: calc(33.33333% - 10px);
}
}
@media (min-width: 830px) {
.items .item {
max-width: calc(25% - 10px);
}
}
@media (min-width: 1040px) {
.items .item {
max-width: calc(20% - 10px);
}
}
@media (min-width: 1250px) {
.items .item {
max-width: calc(16.66667% - 10px);
}
}
@media (min-width: 1460px) {
.items .item {
max-width: calc(14.28571% - 10px);
}
}
@media (min-width: 1670px) {
.items .item {
min-width: calc(12.5% - 10px);
}
}
<body>
<div id="wrapper">
<div class="items">
<div class="item">
<img src="http://i2.cdn.turner.com/cnnnext/dam/assets/150324154025-14-internet-cats-restricted-super-169.jpeg" height="82" width="82" align="left">
<label style="margin-top:1px;">Bob</label>
<br/>
<label style="margin-top:1px;">Bob</label>
</div>
<div class="item">
<img src="http://i2.cdn.turner.com/cnnnext/dam/assets/150324154025-14-internet-cats-restricted-super-169.jpeg" height="82" width="82" align="left">
<label style="margin-top:1px;">Bob</label>
</div>
<div class="item">
<img src="http://i2.cdn.turner.com/cnnnext/dam/assets/150324154025-14-internet-cats-restricted-super-169.jpeg" height="82" width="82" align="left">
<label style="margin-top:1px;">Bob</label>
</div>
<div class="item">
<img src="http://i2.cdn.turner.com/cnnnext/dam/assets/150324154025-14-internet-cats-restricted-super-169.jpeg" height="82" width="82" align="left">
<label style="margin-top:1px;">Bob</label>
</div>
<div class="item">
<img src="http://i2.cdn.turner.com/cnnnext/dam/assets/150324154025-14-internet-cats-restricted-super-169.jpeg" height="82" width="82" align="left">
<label style="margin-top:1px;">Bob</label>
</div>
</div>
<div id="second">
DIV 1
</div>
</div>
</body>