Gmail 表空间(显示:阻止不起作用)
我发现了许多关于通过添加 style="display:block"
代码行来删除 Gmail 中渲染 HTML 代码的图像周围的空间的线程。我还添加了“float: left
”和行高“50%
”出于某种原因,我的消息仍在表行之间添加空间。
还有其他建议吗?我搜索了很多论坛。
I've found many threads about removing the space around images rendering HTML code in Gmail by adding the style="display:block"
line of code. I've also added a "float: left
" and line height "50%
" For some reason my messages are still adding space between table rows.
Are there any other suggestions? I've searched tons of forums.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CSS“块”元素的上方和下方都有空格,并且不允许在其两侧放置任何其他项目。
也许您应该使用
style="display:inline-block"
或style="display:inline"
。如果这些不适合您,请参阅此页面列出 CSS 显示类型以供参考。A CSS "block" element has whitespace above and below it, and will not allow any other items to be placed on either side of it.
Perhaps you should use
style="display:inline-block"
orstyle="display:inline"
. If those aren't working for you, see this page listing the CSS display types for reference.