How to position an element on top of another element without using position and margin?
问题 This is my code: <table>...Some content...</table> <table>...Another content...</table> I want to put the second table on top of the first table. This is to be used as an email template (in some clients position and margin are not available). 回答1: Those are the only two options available (outside of transform , which definitely won't work if position isn't available) that will allow one element to invade another element's space. If you can't use position or margin , then you're out of luck,