How can I make a div *not* expand to fill it's parent?
Have you tried:
.image-wrapper {
display: inline;
}
Or:
.image-wrapper {
display: inline-block;
}
Or:
.image-wrapper {
float: left;
}
Have you tried:
.image-wrapper {
display: inline;
}
Or:
.image-wrapper {
display: inline-block;
}
Or:
.image-wrapper {
float: left;
}