Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Just wondering if this is possible using css

I want to emulate a 40x40 table with a background image (that size already) and another image (also 40x40) sitting on top of that.

I know background image is possible but not sure if the image that sits on top is?

share|improve this question
To clarify, you want to know if it is possible to stack two background images on top of each other in CSS? (if that is the question, the quick answer is yes) – MartinAnsty Apr 8 '12 at 1:49

1 Answer

can you nest an img inside a div?

    <div style="width: 40px; height: 40px; background-image: url(under.jpg);">
            <img style="width: 100%; height: 100%;" src="on-top.jpg" />
    </div>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.