I am trying to figure out how to place a 30x30px no-repeat background image in the top left corner of a 200px by 200px div, positioned 120px from the left and 50px from the top. However, I also want to ensure that the text inside the div is displayed on top of the background image.
Despite my attempt at using the following code, it doesn't seem to work:
background:url(http://example.com/background-image.png) no-repeat 120px 50px;
Does anyone have any ideas on how to achieve this?