Dreamweaver 邮件模板中表格行之间的间距

发布于 2025-01-11 08:25:51 字数 399 浏览 0 评论 0原文

我尝试了在其他帖子中找到的一些解决方案,但仍然没有运气。我得到一个小 我所有表格行之间的间距。所有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

_蜘蛛 2025-01-18 08:25:51

请将 border-collapse:collapse; 更改为 border-collapse:separate; 到您的表格标记内联样式中。

并使用下面的 CSS 代码。

table {
    border-collapse: separate;
    border-spacing: 0 1em;
}
<table border="1" style="border-collapse:separate; margin:0 auto;" cellspacing="5" cellpadding="5">
<tr>
    <th>Heading 1</th>
    <th>Heading 2</th>
</tr>
<tr>
    <td>Value 1</td>
    <td>value 2</td>
</tr>
<tr>
    <td>Value 3</td>
    <td>value 4</td>
</tr>
<tr>
    <td>Value 5</td>
    <td>value 6</td>
</tr>
</table>

Please change border-collapse:collapse; to border-collapse:separate; into your table tag inline style.

And use the below CSS code.

table {
    border-collapse: separate;
    border-spacing: 0 1em;
}
<table border="1" style="border-collapse:separate; margin:0 auto;" cellspacing="5" cellpadding="5">
<tr>
    <th>Heading 1</th>
    <th>Heading 2</th>
</tr>
<tr>
    <td>Value 1</td>
    <td>value 2</td>
</tr>
<tr>
    <td>Value 3</td>
    <td>value 4</td>
</tr>
<tr>
    <td>Value 5</td>
    <td>value 6</td>
</tr>
</table>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文