I've been attempting to position a background image in the bottom right corner of a div (or asp:panel), but it seems that the display:inline-block property might be preventing it from showing up. This property is necessary because I have several boxes aligned horizontally on the screen (and without it, they would stack vertically).
Here's the css code:
.showIcon{
background: url('Images/icon.png') no-repeat right bottom;
display: inline-block;
box-shadow: 2px 2px 2px #808080;
}
Could there be an issue with the CSS itself? I do have a table nested within each div — could that possibly be causing the problem?