本文介绍了删除段落之间的空格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想删除连续2个段落之间的空格。
I am trying to remove the space between 2 consecutive paragraphs.
<p style="margin:0; padding:0;"> Text </p>
<p style="margin:0; padding:0; "> more text</p>
我使用内联样式,因为我试图创建html电子邮件。但它不会删除Entourage电子邮件服务中的空格。
I am using inline styles because I am trying to create html email. However it does not remove the spaces in Entourage email service.
推荐答案
如果这是您使用的确切代码,则 padding; 0;
应该在第一段标签中 padding:0;
。
If that is the exact code you are using then padding;0;
should be padding:0;
in the first paragraph tag.
这篇关于删除段落之间的空格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!