Dreamweaver 邮件模板中表格行之间的间距
我尝试了在其他帖子中找到的一些解决方案,但仍然没有运气。我得到一个小 我所有表格行之间的间距。所有 CSS 和 HTML 看起来都井井有条。有什么想法吗?
table {
border-spacing: 0 !important;
border-collapse: collapse !important;
table-layout: fixed !important;
margin: 0 auto !important;
<table cellpadding="0" cellspacing="0" border="0" height="100%" width="100%" bgcolor="#e0e0e0"
style="border-collapse:collapse;">
I tried some solutions I found in other posts but still no luck. I'm getting a small
spacing between all my table rows. All CSS and HTML seems in order. Any ideas?
table {
border-spacing: 0 !important;
border-collapse: collapse !important;
table-layout: fixed !important;
margin: 0 auto !important;
<table cellpadding="0" cellspacing="0" border="0" height="100%" width="100%" bgcolor="#e0e0e0"
style="border-collapse:collapse;">
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请将 border-collapse:collapse; 更改为 border-collapse:separate; 到您的表格标记内联样式中。
并使用下面的 CSS 代码。
Please change border-collapse:collapse; to border-collapse:separate; into your table tag inline style.
And use the below CSS code.