The conversion process messes up margin code in one significant way:
margin: 1em auto;
gets converted to:
margin-bottom: 1em;
margin-top: 1em;
By eliminating the default "auto" value, any element meant to be centered (because a width is specified) usually gets uncentered.
|