Image will not fill div
Add a vertical-align value (other than the default baseline
) to your image like: top
, middle
...
vertical-align: top;
I fixed this by setting display
of img
to block
:
display: block;
Add a vertical-align value (other than the default baseline
) to your image like: top
, middle
...
vertical-align: top;
I fixed this by setting display
of img
to block
:
display: block;