Need to make an HTML newsletter.
The problem is, I want to move a div on another, which is possible to do with margin, or position: x; and top: x; left:x; but on an email, this doesn't work. Do you have any solution ? Thanks a lot.
I don't have a solution, just some advice... Don't try to do that. It will not work (for a lot of clients). Go back in time and channel your HTML 4.0.1 days, forget CSS classes exist and write your markup like it's the early 2000's again....
This means:
<table>
and related are now your new best friendsDo try this:
Rely on your creative smarts and available documentation to come up with something that looks like what you want, but actually isn't.
I.e. your question: "how to position div on div" could require you to use a table with a table in it that will create the illusion of stacked content while it isn't (think back to the days of slicing images into tiny parts to set as table backgrounds for instance).