We have been utilizing the code below as a vertical spacer within an HTML email:
<div style="height:14px; font-size:14px; line-height:14px;"> </div>
While this approach works effectively in most cases, it seems to create excessive space in Hotmail. Our investigation suggests that Hotmail includes default embedded CSS that triggers these issues.
Despite our efforts to tackle the problem with the following code, the issue persists:
.ExternalClass, .ExternalClass p, .ExternalClass span,
.ExternalClass font, .ExternalClass td, .ExternalClass div {
line-height: 100%; margin: 0; padding: 0;}
We are hoping that someone in this community might offer a solution or suggest a workaround for this challenge.