I have this image appended to a div JSFiddle and my Div is inside a modal. I\'v tried to display by default the bottom left quarter (like filling the div) and to allow the user
The solution is quite simple:
Don't use display: inline-block; as it will place the image will be placed inline and with some margin down. Instead use display: block
display: inline-block;
display: block
The top: -50%; is also moving the picture 50% up leaving it's original position blank
top: -50%;