I have the following
and want to vertically center-align the image.
How would I do this?
thx
I have the following
and want to vertically center-align the image.
How would I do this?
thx
You can't in divs by default (with straight css anyway). You have to set the containing div as a table-cell and vertical align it middle like so:
.ios-image-box
{
display: table-cell;
vertical-align: middle;
}